.form-status {
  margin-top: 15px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.form-status.show {
  opacity: 1;
  transform: translateY(0);
}

.form-status.success {
  background: #e6f9f0;
  color: #0f5132;
  border: 1px solid #badbcc;
}

.form-status.error {
  background: #fde8e8;
  color: #842029;
  border: 1px solid #f5c2c7;
}
/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu-close {
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s ease;
  fill: var(--dl-color-scheme-green100);
}

.mobile-menu-close:hover {
  background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
}

.mobile-menu-link {
  font-family: 'Urbanist', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--dl-color-scheme-green100);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.mobile-menu-link:hover {
  background: rgba(14, 77, 64, 0.06);
}

.mobile-menu-cta {
  margin-top: 8px;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  padding: 14px 24px;
}

@media(max-width:767px) {
  .mobile-menu {
    display: block;
  }
  .mobile-menu.open {
    display: block;
  }
  .mobile-menu-links,
  .mobile-menu-header {
    background: white;
  }
  .mobile-menu-header {
    border-radius: 0;
  }
  .mobile-menu-links {
    min-height: calc(100vh - 65px);
  }
}

/* ===== TESTIMONIAL CARDS ===== */
.card-card {
  flex: 0 0 auto;
  width: 32%;
  display: flex;
  padding: 20px;
  max-width: 450px;
  min-height: 480px;
  align-items: center;
  border-radius: 24px;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  justify-content: flex-end;
  background-image: url(public/playground_assets/rectangle%2035-1500w.png);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.card-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
  border-radius: 24px;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.card-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.card-card:hover::before {
  opacity: 0.8;
}

.card-info {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 20px 24px;
  border-radius: 16px;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.card-text {
  font-size: 18px;
  font-style: normal;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: var(--dl-space-space-halfunit);
  color: var(--dl-color-scheme-green100);
}

.card-text1 {
  line-height: 1.6;
  color: #475569;
  font-size: 14.5px;
  font-family: 'Urbanist', sans-serif;
}

.card-root-class-name {
  background-size: cover;
  background-position: center;
  background-image: url(https://images.unsplash.com/photo-1607453998774-d533f65dac99?ixid=Mnw5MTMyMXwwfDF8c2VhcmNofDJ8fGtpZHMlMjBsYXVnaGluZ3xlbnwwfHx8fDE2NzYwMjU1NjI&ixlib=rb-4.0.3&w=1200);
}

.card-root-class-name1 {
  background-size: cover;
  background-position: center;
  background-image: url(https://images.unsplash.com/photo-1615961766458-6950a05bba08?ixid=Mnw5MTMyMXwwfDF8c2VhcmNofDIyfHxraWRzJTIwdmlkZW8lMjBnYW1lc3xlbnwwfHx8fDE2NzYwMjU2MDQ&ixlib=rb-4.0.3&w=1200);
}

.card-root-class-name2 {
  background-size: cover;
  background-position: center;
  background-image: url(https://images.unsplash.com/photo-1597413545419-4013431dbfec?ixid=Mnw5MTMyMXwwfDF8c2VhcmNofDE3fHxraWRzJTIwbGF1Z2hpbmd8ZW58MHx8fHwxNjc2MDI1NTYy&ixlib=rb-4.0.3&w=1200);
}

@media(max-width:767px) {
  .card-card { width: 100%; }
}

@media(max-width:479px) {
  .card-root-class-name {
    background-size: cover;
    background-position: center;
    background-image: url(https://images.unsplash.com/photo-1607453998774-d533f65dac99?ixid=Mnw5MTMyMXwwfDF8c2VhcmNofDJ8fGtpZHMlMjBsYXVnaGluZ3xlbnwwfHx8fDE2NzYwMjU1NjI&ixlib=rb-4.0.3&w=1200);
  }
  .card-root-class-name1 {
    background-size: cover;
    background-position: center;
    background-image: url(https://images.unsplash.com/photo-1615961766458-6950a05bba08?ixid=Mnw5MTMyMXwwfDF8c2VhcmNofDIyfHxraWRzJTIwdmlkZW8lMjBnYW1lc3xlbnwwfHx8fDE2NzYwMjU2MDQ&ixlib=rb-4.0.3&w=1200);
  }
  .card-root-class-name2 {
    background-size: cover;
    background-position: center;
    background-image: url(https://images.unsplash.com/photo-1597413545419-4013431dbfec?ixid=Mnw5MTMyMXwwfDF8c2VhcmNofDE3fHxraWRzJTIwbGF1Z2hpbmd8ZW58MHx8fHwxNjc2MDI1NTYy&ixlib=rb-4.0.3&w=1200);
  }
}

/* ===== MAIN CONTAINER ===== */
.home-container {
  width: 100%;
  display: flex;
  min-height: 100vh;
  align-items: center;
  flex-direction: column;
  background-color: var(--dl-color-scheme-yellow20);
}

/* ===== NAVBAR ===== */
.home-logo {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.home-image {
  width: 24px;
  object-fit: cover;
  margin-right: 14px;
}

.home-text01 {
  color: var(--dl-color-scheme-orange100);
}

.home-links {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}

.home-text03 {
  color: var(--dl-color-scheme-green80);
  margin-right: var(--dl-space-space-twounits);
  text-decoration: none;
}

.home-link {
  color: var(--dl-color-scheme-green80);
  margin-right: var(--dl-space-space-twounits);
  text-decoration: none;
}

.home-link01 {
  color: var(--dl-color-scheme-green80);
  margin-right: var(--dl-space-space-twounits);
  text-decoration: none;
}

.home-link02 {
  color: var(--dl-color-scheme-green80);
  margin-right: var(--dl-space-space-twounits);
  text-decoration: none;
}

.home-link03 {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.home-burger-menu {
  fill: var(--dl-color-scheme-green100);
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.home-burger-menu:hover {
  opacity: 0.7;
}

/* ===== HERO SECTION ===== */
.home-section-1 {
  height: auto;
  min-height: 580px;
  padding-top: var(--dl-space-space-eightunits);
  padding-bottom: var(--dl-space-space-eightunits);
  position: relative;
}

.home-section-1::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.home-max-width1 {
  align-items: center;
}

.home-content {
  flex: 0 0 auto;
  width: 48%;
  display: flex;
  align-items: flex-start;
  margin-right: var(--dl-space-space-twounits);
  margin-bottom: var(--dl-space-space-threeunits);
  flex-direction: column;
}

.home-subtitle {
  color: var(--dl-color-scheme-orange100);
  margin-bottom: var(--dl-space-space-unit);
  font-size: 13px;
  letter-spacing: 0.2em;
}

.home-title {
  color: var(--dl-color-scheme-white);
  font-size: 48px;
  font-style: normal;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--dl-space-space-twounits);
  letter-spacing: -0.02em;
}

.home-text05 {
  color: var(--dl-color-scheme-lightgreen);
  display: inline;
  background: linear-gradient(135deg, #a3e635, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: var(--dl-space-space-threeunits);
  font-family: 'Urbanist', sans-serif;
}

.home-text07 { font-style: normal; font-weight: 700; color: rgba(255,255,255,0.95); }
.home-text09 { font-style: normal; font-weight: 700; color: rgba(255,255,255,0.95); }
.home-text11 { color: var(--dl-color-scheme-lightgreen); }
.home-text13 { font-style: normal; font-weight: 700; color: rgba(255,255,255,0.95); }

.home-container01 {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  flex-direction: row;
  gap: 16px;
}

.home-link04 {
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.home-button {
  text-decoration: none;
  font-size: 15px;
}

.home-hero-image {
  flex: 1;
  max-width: 480px;
  object-fit: cover;
  padding-top: 40px;
  border-radius: 32px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.home-image01 {
  position: relative;
  padding-bottom: var(--dl-space-space-eightunits);
}

.home-graphic-top {
  top: 0;
  right: -170px;
  width: 100%;
  height: 100%;
  position: absolute;
  max-width: 359px;
  max-height: 359px;
  object-fit: contain;
  object-position: center;
  opacity: 0.7;
}

.home-image02 {
  right: -170px;
  bottom: 0;
  position: absolute;
  object-fit: contain;
  opacity: 0.7;
}

/* ===== STATS BANNER ===== */
.home-banner {
  width: 100%;
  display: flex;
  padding: var(--dl-space-space-fourunits) var(--dl-space-space-threeunits);
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #fafaf7 0%, #fef9ef 100%);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.home-text15 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 0;
  font-family: 'Urbanist', sans-serif;
  font-size: 22px;
  color: var(--dl-color-scheme-green100);
  line-height: 1.8;
}

.home-text20 {
  color: #dc2626;
  text-decoration: none;
  font-weight: 800;
  font-size: 26px;
}

/* ===== IMAGE SECTIONS ===== */
.home-section-2 {
  height: 345px;
  align-self: flex-start;
  align-items: center;
  padding-top: 0;
}

.home-container02 {
  flex: 0 0 auto;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-section-21 {
  height: 434px;
  align-self: flex-start;
  align-items: center;
  padding-top: 0;
}

.home-max-width2 {
  align-self: center;
  align-items: stretch;
  justify-content: center;
}

.home-image03 {
  position: relative;
}

.home-hero-image1 {
  height: 325px;
  margin: 0;
  object-fit: contain;
  border-radius: 24px;
}

/* ===== PLAYERS SECTION ===== */
.home-container03 {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--dl-space-space-threeunits) var(--dl-space-space-twounits);
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.home-text23 {
  font-weight: 800;
  font-family: 'Urbanist', sans-serif;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--dl-color-scheme-green100);
}

/* ===== SCREENSHOTS ===== */
.home-hero {
  width: 100%;
  display: flex;
  padding: var(--dl-space-space-fourunits) var(--dl-space-space-threeunits);
  max-width: var(--dl-size-size-maxwidth);
  min-height: auto;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}

.home-image04,
.home-image05,
.home-image06 {
  width: 300px;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-image04:hover,
.home-image05:hover,
.home-image06:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}

/* ===== CTA BUTTONS ===== */
.home-button1 {
  margin-bottom: var(--dl-space-space-fourunits);
  text-decoration: none;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-color: transparent;
  color: white;
  font-size: 16px;
  padding: 18px 36px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
  white-space: nowrap;
  display: block;
  text-align: center;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.home-button1:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* ===== GAMES SECTION ===== */
.home-container04 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--dl-space-space-fourunits) var(--dl-space-space-twounits);
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.home-text24 {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: var(--dl-color-scheme-green100);
  line-height: 1.4;
}

.home-text26 {
  color: var(--dl-color-scheme-orange100);
}

/* ===== SAVE MONEY SECTION ===== */
.home-section {
  background: linear-gradient(180deg, rgba(255, 199, 139, 0.08) 0%, rgba(255, 199, 139, 0.15) 100%);
}

.home-max-width3 {
  align-items: stretch;
}

.home-content1 {
  width: 50%;
  display: flex;
  margin-right: var(--dl-space-space-twounits);
  flex-direction: column;
  justify-content: center;
}

.home-text27 {
  color: var(--dl-color-scheme-green80);
  margin-bottom: var(--dl-space-space-unit);
}

.home-text28 {
  font-size: 38px;
  font-style: normal;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: var(--dl-space-space-twounits);
  letter-spacing: -0.02em;
}

.home-text29 {
  color: var(--dl-color-scheme-orange100);
  font-size: 28px;
  font-family: 'Urbanist', sans-serif;
}

.home-text31 { font-family: 'Urbanist', sans-serif; }
.home-text33 { color: var(--dl-color-scheme-orange100); font-size: 28px; }

.home-text37 {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: var(--dl-space-space-threeunits);
  color: #475569;
  font-family: 'Urbanist', sans-serif;
}

.home-button2 {
  width: auto;
  max-width: 340px;
  margin-bottom: var(--dl-space-space-twounits);
  text-decoration: none;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-color: transparent;
  color: white;
  font-size: 15px;
  padding: 16px 32px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
  white-space: nowrap;
  text-align: center;
}

.home-button2:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.home-image07 {
  position: relative;
}

.home-hero-image2 {
  object-fit: contain;
  margin-right: -200px;
  border-radius: 32px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* ===== FEATURES / FACTS SECTION ===== */
.home-features {
  background: linear-gradient(165deg, #0a3a2f 0%, #0e4d40 50%, #126b55 100%);
}

.home-max-width4 {
  align-items: stretch;
}

.home-image08 {
  width: 50%;
}

.home-hero-image3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-2xl);
}

.home-content2 {
  width: 42%;
  display: flex;
  margin-top: var(--dl-space-space-twounits);
  margin-bottom: var(--dl-space-space-twounits);
  flex-direction: column;
  justify-content: center;
}

.home-text40 {
  color: var(--dl-color-scheme-lightgreen);
  margin-bottom: var(--dl-space-space-unit);
}

.home-text41 {
  color: var(--dl-color-scheme-white);
  font-size: 40px;
  font-style: normal;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: var(--dl-space-space-threeunits);
  letter-spacing: -0.02em;
}

/* Steps */
.home-step, .home-step1, .home-step2 {
  display: flex;
  margin-bottom: var(--dl-space-space-twounits);
  flex-direction: row;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  transition: background 0.3s ease;
}

.home-step:hover, .home-step1:hover, .home-step2:hover {
  background: rgba(255, 255, 255, 0.05);
}

.home-number, .home-number1, .home-number2 {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  margin-right: var(--dl-space-space-oneandhalfunits);
  border-radius: 14px;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.home-text42, .home-text44, .home-text46 {
  font-size: 24px;
  font-style: normal;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  line-height: 1.5;
  color: white;
}

.home-container05, .home-container06, .home-container07 {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.home-title1, .home-title2, .home-title3 {
  color: var(--dl-color-scheme-white);
  font-size: 22px;
  font-style: normal;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: var(--dl-space-space-halfunit);
}

.home-text43, .home-text45, .home-text47 {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 15px;
  font-family: 'Urbanist', sans-serif;
}

/* ===== HOW IT WORKS ===== */
.home-container08 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  margin-top: 0;
  gap: 12px;
  background: linear-gradient(165deg, #f0fdf4, #ecfdf5, #f0fdf4);
  position: relative;
}

.home-text48 {
  font-style: normal;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: var(--dl-color-scheme-green100);
  text-align: center;
}

.hiw-subtitle {
  font-size: 17px;
  color: #64748b;
  font-family: 'Urbanist', sans-serif;
  margin-bottom: 32px;
  text-align: center;
}

.hiw-steps {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1000px;
  width: 100%;
}

.hiw-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(14, 77, 64, 0.08);
  border: 1px solid rgba(14, 77, 64, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.hiw-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(14, 77, 64, 0.14);
}

.hiw-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e4d40, #16a34a);
  color: white;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(14, 77, 64, 0.25);
}

.hiw-step-title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #0f172a;
  margin-bottom: 8px;
}

.hiw-step-desc {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  max-width: 200px;
}

.hiw-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #16a34a, #0e4d40);
  flex-shrink: 0;
  border-radius: 2px;
}

/* Scroll-triggered animation for steps */
.hiw-animate {
  opacity: 0;
  transform: translateY(32px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hiw-animate.hiw-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Pulse glow on the number badges */
@keyframes hiw-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(14, 77, 64, 0.25); }
  50% { box-shadow: 0 4px 24px rgba(22, 163, 74, 0.45); }
}

.hiw-visible .hiw-number {
  animation: hiw-pulse 2.5s ease-in-out infinite;
}

/* ===== CTA BUTTON 3 ===== */
.home-button3 {
  margin-top: 0;
  margin-bottom: var(--dl-space-space-fourunits);
  text-decoration: none;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-color: transparent;
  color: white;
  font-size: 16px;
  padding: 18px 36px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
  white-space: nowrap;
  display: block;
  text-align: center;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.home-button3:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* ===== TESTIMONIALS ===== */
.home-section1 {
  padding-top: var(--dl-space-space-fourunits);
  background: linear-gradient(180deg, var(--dl-color-scheme-yellow20) 0%, #f1f5f9 100%);
}

.home-max-width5 {
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.home-text49 {
  font-size: 40px;
  font-style: normal;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--dl-space-space-fourunits);
  letter-spacing: -0.02em;
  color: var(--dl-color-scheme-green100);
}

.home-cards-container {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
}

/* ===== FAQ SECTION ===== */
.home-section2 {
  padding-top: var(--dl-space-space-eightunits);
  padding-bottom: 0;
  background-color: #f8fafc;
}

.home-max-width6 {
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.home-f-a-q {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: var(--dl-space-space-eightunits);
  flex-direction: row;
  justify-content: space-between;
  gap: 48px;
}

.home-questions {
  flex: 0 0 auto;
  width: 55%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.home-text50 {
  color: var(--dl-color-scheme-green80);
  margin-bottom: var(--dl-space-space-unit);
}

.home-text51 {
  font-size: 40px;
  font-style: normal;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--dl-space-space-threeunits);
  letter-spacing: -0.02em;
}

.home-text52 { font-family: 'Urbanist', sans-serif; }
.home-text54 { color: var(--dl-color-scheme-orange100); font-family: 'Urbanist', sans-serif; }

/* FAQ Triggers */
.home-trigger,
.home-trigger1,
.home-trigger2,
.home-trigger3 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.home-text55, .home-text57, .home-text59, .home-text61 {
  font-size: 17px;
  font-style: normal;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  line-height: 1.5;
  color: var(--dl-color-scheme-green100);
}

.home-icon02, .home-icon04, .home-icon06, .home-icon08 {
  width: 16px;
  height: 16px;
  color: var(--dl-color-scheme-green80);
  flex-shrink: 0;
}

/* FAQ Answers */
.home-answer { align-self: flex-start; justify-content: flex-start; }
.home-answer1 { align-self: flex-start; }
.home-answer3 { align-self: flex-start; }

.home-text56, .home-text58, .home-text60, .home-text62 {
  margin-top: 12px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
  font-family: 'Urbanist', sans-serif;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
}

.home-image10 {
  width: 40%;
  object-fit: cover;
  margin-right: -100px;
  opacity: 0.9;
}

/* ===== GET STARTED BANNER ===== */
.home-banner1 {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  padding: var(--dl-space-space-fourunits) var(--dl-space-space-threeunits);
  align-items: center;
  border-radius: 32px;
  flex-direction: column;
  background-size: cover;
  background-image: url(public/playground_assets/group%2011-1200w.png);
  position: relative;
  overflow: hidden;
}

.home-banner1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 58, 47, 0.85), rgba(14, 77, 64, 0.9));
  border-radius: 32px;
  z-index: 0;
}

.home-banner1 > * {
  position: relative;
  z-index: 1;
}

.home-text63 {
  color: var(--dl-color-scheme-lightgreen);
  margin-bottom: var(--dl-space-space-halfunit);
}

.home-text64 {
  font-size: 40px;
  font-style: normal;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--dl-space-space-unit);
  letter-spacing: -0.02em;
}

.home-text65 { color: var(--dl-color-scheme-white); }
.home-text66 { color: #f59e0b; }
.home-text67 { color: var(--dl-color-scheme-white); }
.home-text69 { color: var(--dl-color-scheme-white); }
.home-text70 { color: var(--dl-color-scheme-white); }
.home-text71 { color: var(--dl-color-scheme-white); }

.home-text72 {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: var(--dl-space-space-twounits);
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.home-btns {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  flex-direction: row;
}

.home-link05 {
  padding: 16px 32px;
  margin-right: 0;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-align: center;
}

/* ===== CONTACT SECTION (Clean Form) ===== */
.home-contact-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--dl-space-space-eightunits) var(--dl-space-space-oneandhalfunits);
  background-color: #f1f5f9;
}

.home-contact-card {
  width: 100%;
  max-width: 620px;
  background: var(--dl-color-scheme-white);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}

.home-contact-header {
  text-align: center;
  margin-bottom: 36px;
}

.home-contact-label {
  display: block;
  margin-bottom: 12px;
  color: var(--dl-color-scheme-orange100);
}

.home-contact-title {
  font-size: 32px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  color: var(--dl-color-scheme-green100);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.home-contact-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  font-family: 'Urbanist', sans-serif;
  max-width: 440px;
  margin: 0 auto;
}

.home-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-contact-field-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dl-color-scheme-green100);
  font-family: 'Urbanist', sans-serif;
}

.home-contact-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Urbanist', sans-serif;
  color: var(--dl-color-scheme-green100);
  background: #f8fafc;
  transition: all 0.25s ease;
  outline: none;
}

.home-contact-input:focus {
  border-color: var(--dl-color-scheme-green80);
  background: white;
  box-shadow: 0 0 0 3px rgba(14, 77, 64, 0.08);
}

.home-contact-input::placeholder {
  color: #94a3b8;
}

.home-contact-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Urbanist', sans-serif;
  color: var(--dl-color-scheme-green100);
  background: #f8fafc;
  transition: all 0.25s ease;
  outline: none;
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.home-contact-textarea:focus {
  border-color: var(--dl-color-scheme-green80);
  background: white;
  box-shadow: 0 0 0 3px rgba(14, 77, 64, 0.08);
}

.home-contact-textarea::placeholder {
  color: #94a3b8;
}

.home-contact-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--dl-color-scheme-green80);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Urbanist', sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 4px;
}

.home-contact-btn:hover {
  background: var(--dl-color-scheme-green100);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(10, 58, 47, 0.25);
}

/* ===== FOOTER ===== */
.home-footer {
  width: 100%;
  display: flex;
  max-width: var(--dl-size-size-maxwidth);
  align-items: center;
  padding: var(--dl-space-space-fourunits) var(--dl-space-space-threeunits);
  flex-direction: column;
  justify-content: space-between;
}

.home-container10 {
  width: auto;
  max-width: 600px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.home-image11 {
  width: 180px;
  height: auto;
  margin-right: 0;
  margin-bottom: 0;
  opacity: 0.9;
}

.home-nav {
  flex: 0 0 auto;
  display: flex;
  margin-top: 0;
  align-items: center;
  flex-direction: row;
  gap: 24px;
}

.home-link06,
.home-link07,
.home-link08,
.home-link09 {
  margin-left: 0;
  text-decoration: none;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--dl-color-scheme-green80);
  transition: color 0.2s ease;
}

.home-link06:hover,
.home-link07:hover,
.home-link08:hover,
.home-link09:hover {
  color: var(--dl-color-scheme-green100);
}

.home-separator {
  flex: 0 0 auto;
  width: 100%;
  height: 0;
  display: flex;
  margin-top: var(--dl-space-space-twounits);
  align-items: flex-start;
  margin-left: 0;
  border-color: #e2e8f0;
  border-style: solid;
  border-width: 1px;
  margin-right: 0;
  margin-bottom: var(--dl-space-space-twounits);
  flex-direction: row;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0;
}

.home-container11 {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.home-icon-group {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
}

.home-icon10,
.home-icon12,
.home-icon14 {
  width: 20px;
  height: 20px;
  margin-right: 0;
  color: #64748b;
  transition: all 0.2s ease;
  cursor: pointer;
}

.home-icon10:hover,
.home-icon12:hover,
.home-icon14:hover {
  color: var(--dl-color-scheme-green100);
  transform: translateY(-2px);
}

.home-text80 {
  font-size: 13px;
  line-height: 1.6;
  color: #94a3b8;
  font-family: 'Urbanist', sans-serif;
}

.home-text81 {
  font-weight: 600;
  color: #64748b;
}

/* ============================
   RESPONSIVE BREAKPOINTS
   ============================ */

@media(max-width:991px) {
  .home-max-width { width: 100%; }
  .home-links { width: auto; }
  .home-link03 { width: auto; }
  .home-section-1 { height: auto; min-height: auto; }
  .home-content { width: 50%; margin-right: var(--dl-space-space-unit); }
  .home-hero-image { width: 340px; height: auto; max-width: 340px; margin-bottom: 0; }
  .home-image01 { padding-bottom: var(--dl-space-space-threeunits); }
  .home-text15 { text-align: center; }
  .home-max-width2 { flex-direction: column; }
  .home-image03 { height: 328px; padding-bottom: var(--dl-space-space-threeunits); }
  .home-hero-image1 { width: 100%; height: 100%; margin: 0; }
  .home-hero { flex-direction: column; min-height: auto; gap: 16px; }
  .home-image04, .home-image05, .home-image06 { width: 280px; height: 520px; }
  .home-button1 { background: linear-gradient(135deg, #dc2626, #b91c1c); }
  .home-text24 { width: auto; }
  .home-max-width3 { flex-direction: column; }
  .home-content1 { width: 100%; margin-left: 0; margin-right: 0; margin-bottom: var(--dl-space-space-threeunits); }
  .home-button2 { background: linear-gradient(135deg, #dc2626, #b91c1c); }
  .home-image07 { padding-bottom: 0; }
  .home-hero-image2 { width: 100%; margin-left: 0; margin-right: 0; margin-bottom: 0; }
  .home-max-width4 { flex-direction: column; }
  .home-image08 { width: 100%; padding-bottom: var(--dl-space-space-threeunits); }
  .home-hero-image3 { width: 100%; margin: 0; }
  .home-content2 { width: 100%; margin: 0; }
  .home-button3 { background: linear-gradient(135deg, #dc2626, #b91c1c); }
  .home-max-width5 { flex-direction: column; }
  .home-max-width6 { flex-direction: column; }
  .home-questions { width: 60%; }
  .home-image10 { margin-right: -60px; }
  .home-contact-card { max-width: 100%; }
}

@media(max-width:767px) {
  .home-links { display: none; }
  .home-icon { fill: var(--dl-color-scheme-green100); }
  .home-section-1 { width: 100%; height: auto; padding-top: var(--dl-space-space-threeunits); }
  .home-max-width1 { flex-direction: column-reverse; }
  .home-content { width: 100%; margin-right: 0; }
  .home-container01 { width: auto; }
  .home-link04 { width: auto; }
  .home-button { width: auto; margin-left: 0; }
  .home-hero-image { width: 100%; max-width: 400px; height: auto; margin-right: 0; }
  .home-banner { padding: var(--dl-space-space-threeunits) var(--dl-space-space-twounits); }
  .home-hero-image1 { width: 100%; }
  .home-hero { padding: var(--dl-space-space-twounits); }
  .home-image04, .home-image05, .home-image06 {
    width: 260px;
    height: 480px;
    margin-bottom: var(--dl-space-space-twounits);
  }
  .home-text24 { width: auto; }
  .home-content1 { width: 100%; margin-right: 0; }
  .home-button2 { width: auto; max-width: 100%; }
  .home-content2 { width: 100%; margin-right: 0; }
  .home-text48 { text-align: center; padding-right: 0; }
  .home-container08 { flex-direction: column; gap: 32px; padding: var(--dl-space-space-threeunits); }
  .hiw-steps { flex-direction: column; gap: 16px; }
  .hiw-connector { width: 2px; height: 32px; background: linear-gradient(180deg, #16a34a, #0e4d40); }
  .home-cards-container {
    gap: var(--dl-space-space-oneandhalfunits);
    flex-wrap: wrap;
    justify-content: center;
  }
  .home-f-a-q {
    margin-bottom: var(--dl-space-space-fourunits);
    flex-direction: column;
    gap: 24px;
  }
  .home-questions { width: 100%; margin-bottom: var(--dl-space-space-oneandhalfunits); }
  .home-image10 { width: 100%; margin-right: 0; }
  .home-banner1 { padding: var(--dl-space-space-threeunits) var(--dl-space-space-twounits); border-radius: 24px; }
  .home-contact-section { padding: var(--dl-space-space-threeunits) var(--dl-space-space-twounits); }
  .home-contact-card { padding: 32px 24px; }
  .home-footer { padding: var(--dl-space-space-threeunits) var(--dl-space-space-twounits); }
  .home-image11 { margin-bottom: var(--dl-space-space-oneandhalfunits); }
  .home-separator {
    margin-top: var(--dl-space-space-oneandhalfunits);
    margin-bottom: var(--dl-space-space-oneandhalfunits);
  }
  .home-container11 {
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
  }
  .home-text80 { text-align: center; margin-bottom: var(--dl-space-space-oneandhalfunits); }
  .home-text81 { margin-bottom: 0; }
}

@media(max-width:479px) {
  .home-text01 { color: var(--dl-color-scheme-orange100); }
  .home-section-1 { width: 100%; height: auto; padding-bottom: var(--dl-space-space-fourunits); }
  .home-max-width1 { height: auto; }
  .home-content { position: relative; }
  .home-title {
    font-size: 36px;
    align-self: center;
    text-align: center;
    line-height: 1.2;
  }
  .home-text05 { color: var(--dl-color-scheme-lightgreen); }
  .home-description { align-self: stretch; text-align: center; font-size: 15px; }
  .home-container01 {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .home-link04 { width: 100%; text-align: center; justify-content: center; font-size: 13px; padding: 14px 20px; }
  .home-button { width: 100%; text-align: center; align-self: center; font-size: 13px; padding: 14px 20px; }
  .home-hero-image { margin: 20px auto; max-width: 300px; }
  .home-banner {
    padding: var(--dl-space-space-twounits) var(--dl-space-space-unit);
  }
  .home-text15 { font-size: 18px; font-weight: 600; }
  .home-text20 { font-size: 22px; }
  .home-section-2 {
    height: auto;
    margin: 10px;
    padding: 0;
  }
  .home-container02 { height: auto; display: flex; }
  .home-section-21 {
    width: 100%;
    height: auto;
    margin: 10px;
    padding: 0;
  }
  .home-max-width2 { position: relative; align-items: stretch; }
  .home-image03 { width: 100%; height: auto; padding-bottom: 0; }
  .home-hero-image1 {
    width: 100%;
    height: auto;
    margin: auto;
    border-radius: 16px;
  }
  .home-container03 { height: auto; padding: var(--dl-space-space-twounits); }
  .home-text23 { font-size: 20px; font-weight: 700; text-align: center; }
  .home-hero {
    height: auto;
    padding: var(--dl-space-space-twounits) var(--dl-space-space-unit);
    margin-bottom: 20px;
    flex-direction: column;
  }
  .home-image04, .home-image05, .home-image06 {
    width: 100%;
    max-width: 340px;
    height: auto;
    aspect-ratio: 9/16;
  }
  .home-button1 {
    align-self: center;
    margin-bottom: var(--dl-space-space-twounits);
    font-size: 13px;
    padding: 14px 24px;
  }
  .home-container04 { height: auto; margin-bottom: 0; padding: var(--dl-space-space-twounits); }
  .home-text24 { width: 100%; height: auto; font-size: 18px; }
  .home-section { height: auto; margin-top: 0; padding-top: var(--dl-space-space-fourunits); }
  .home-max-width3 { margin-top: 0; }
  .home-content1 { height: auto; }
  .home-text28 { width: 100%; height: auto; font-size: 28px; }
  .home-text29 { font-size: 22px; }
  .home-text33 { font-size: 22px; }
  .home-text37 { font-size: 15px; }
  .home-button2 {
    align-self: center;
    max-width: 100%;
    width: 100%;
    font-size: 13px;
    padding: 14px 20px;
    text-align: center;
  }
  .home-hero-image2 { height: auto; margin-right: 0; }
  .home-features {
    background: linear-gradient(165deg, #0a3a2f, #0e4d40);
  }
  .home-text41 { font-size: 32px; }
  .home-step, .home-step1, .home-step2 { padding: 12px; }
  .home-container08 {
    height: auto;
    flex-direction: column;
    padding: var(--dl-space-space-twounits);
  }
  .home-text48 { font-size: 28px; text-align: center; }
  .hiw-steps { flex-direction: column; gap: 12px; }
  .hiw-connector { width: 2px; height: 24px; background: linear-gradient(180deg, #16a34a, #0e4d40); }
  .hiw-step { padding: 20px 12px; }
  .hiw-step-desc { font-size: 13px; }
  .home-button3 { align-self: center; font-size: 13px; padding: 14px 24px; }
  .home-text49 { font-size: 28px; }
  .home-text51 { font-size: 28px; }
  .home-banner1 {
    padding: var(--dl-space-space-twounits);
    border-radius: 20px;
  }
  .home-text64 { font-size: 28px; }
  .home-text66 { color: #f59e0b; }
  .home-link05 { font-size: 12px; padding: 14px 20px; }
  .home-contact-section { padding: var(--dl-space-space-twounits) var(--dl-space-space-unit); }
  .home-contact-card { padding: 24px 16px; border-radius: 16px; }
  .home-contact-title { font-size: 1.5rem; }
  .home-contact-textarea { min-height: 120px; }
  .home-footer { height: auto; padding: var(--dl-space-space-twounits) var(--dl-space-space-unit); }
  .home-image11 { width: 200px; height: auto; }
  .home-nav { flex-wrap: wrap; justify-content: center; }
  .home-separator {
    margin-top: var(--dl-space-space-oneandhalfunits);
    margin-bottom: var(--dl-space-space-oneandhalfunits);
  }
  .home-container11 {
    align-items: center;
    flex-direction: column;
    gap: 16px;
  }
  .home-text80 { text-align: center; margin-bottom: 0; }
  .home-text81 { text-align: center; margin-bottom: 0; }
}