/* Default: show desktop, hide mobile */
.header-mobile {
  background: radial-gradient(circle at 50% 65%, #7c7c7c 0%, #313131 80%);
  display: none;
  height: calc(100vh - 140px);
  min-height: 500px;
}

.cta-container-mobile{
    display: none;
}

/* On small screens: show mobile, hide desktop */
@media (max-width: 800px) {
  .header-desktop {
    display: none;
  }
  .header-mobile {
    display: block;
  }
  .cta-container-mobile {
    display: block;
  }
  .features {
    background: #313131;
    color: #F8F8ED;
    position: relative;
    padding-top: 75px;
    padding-bottom: 30vw;
  }
    .feature-text h2,
    .feature-text h3 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 30px;
    }
  .features .container {
    gap: 32px;
  }
  .feature {
    grid-template-columns: 1fr !important;
    min-height: unset;
    gap: 24px;
    max-width: 100%;
  }
    .circle-img {
    margin-bottom: 60px;
    margin-top: 20px;
    border-radius: 50%;
    width: clamp(80px, 80vw, 400px);
    height: clamp(80px, 80vw, 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    order: 1;
    background: #fff;
    box-shadow: 0 2px 10px rgba(80,80,80,0.09);
    overflow: hidden;
    }
    .circle-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    }
  .feature-text {
    max-width: 100%;
    justify-self: stretch;
    order: 2;
  }
  .circle-img-1 {
    display: none;
  }
  .divider-img img {
    width: 100vw;
    height: auto;
    top: -38.5vw;
  }
  .how-it-works {
    display: none;
  }
  footer {
    background: #F8F8ED;
    color: #313131;
    padding-top: 100px;
  }
  .footer-logo {
    display: none;
  }
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .footer-logo { order: 1; justify-content: center; }
  .footer-heading { order: 2;}
  .footer-description { order: 3; padding-bottom: 50px;}
  .whats-included-heading { order: 4;}
  .whats-included { order: 5;}
  .footer-img { margin-top: 32px; max-width: 94vw; }
}

.center-img-mobile {
    height: 50vh;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    top: 50%;
}

.logo-mobile {
    padding-top: 30px;
    width: 60vw;
}

.header-labels-mobile {
    font-family: 'LTRenovate', 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    position: absolute;
    bottom: 0;
    left: 30px;
}

.bottom-header-mobile {
    background: #313131;
    height: 100px;
    width: 100vw;
    position: absolute;
    bottom: 0;
    left: 0;
}

.cta-container-mobile {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}