:root {
  --app-theme-secondary-color: #fff;
  --app-theme-primary-color: #000;
  --font-normal-color: #4E5065FA;
}

html {
  scroll-behavior: smooth;
  cursor: help;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
}

/*------- top ------*/

.app-index-nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(10, 10, 10, 0.45);
  
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.app-index-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.app-index-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: MontserratEB;
  cursor: help;
}

.app-index-nav a[active] {
    border-bottom: .4em dashed var(--app-theme-secondary-color);
}
.sign-up-login-wrap {
  display: flex;
  gap: .6em;
  width: 95%;
}

.sign-up-login-wrap #redi-signup {
  flex-basis: 60%;
}

.sign-up-login-wrap #redi-login {
  flex-basis: 40%;
}

.close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  border: none;
  outline: 0;
  background: transparent;
  color: #fff;
}
.close-btn svg {
  fill: #fff;
  height: 40px;
  width: 40px;
}

.first-sec-wrap {
  background: var(--app-theme-primary-color);
  color: #fff;
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-logo {
  width: 150px;
  height: auto;
}

.app-index-hamburger-icon {
  width: 30px;
  height: 30px;
  color: #fff;
}

.app-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 650px;
  margin: auto;
}

.app-hero-content strong {
    font-family: MontserratEB;
}

.app-hero-title {
  font-size: clamp(2.4rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
  font-family: MontserratEB;
}

.beelooo-pricing-badge {
    font-family: MontserratEB;
    border-radius: 20px;
    color: var(--app-theme-secondary-color);
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: .91em;
}

.app-hero-description {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.5;
  margin-bottom: 5px;
  font-family: NatoSansR;
}


.app-primary-btn {
  font-family: MontserratEB;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  
  border: none;
  border-radius: 12px;
  background: var(--app-theme-secondary-color);
  color: #000;
  
  font-size: 1.05rem;
  font-weight: 700;
  transition: .25s;
}


.app-primary-btn:hover {
  transform: translateY(-2px);
}

.app-primary-btn:active {
  transform: scale(.98);
}









.contact-form{
    width: 100%;
    max-width:650px;
    /*padding: 1em;*/
    margin:auto;
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-group{
    position:relative;
    margin-bottom:22px;
}

.form-group input,
.form-group textarea{
    width: 90%;
    padding:18px 15px 10px;
    border:2px solid #ddd;
    border-radius:12px;
    outline:none;
    font-size:15px;
    transition:.3s;
    resize:none;
    background:#fff;
}

.form-group label{
    position:absolute;
    left:15px;
    top:16px;
    color:#888;
    background:#fff;
    padding:0 5px;
    pointer-events:none;
    transition:.25s;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#1f7cff;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label,
.form-group input:valid+label,
.form-group textarea:valid+label{
    top:-10px;
    font-size:12px;
    color:#1f7cff;
}

.submit-btn{
  font-family: MontserratEB;
width: 90%;
height: 50px;
box-sizing: border-box;

border: none;
border-radius: 12px;
color: var(--app-theme-secondary-color);
background: #000;

font-size: 1.05rem;
font-weight: 700;
transition: .25s;

}

.submit-btn:active{
    transform: scale(.98);
}

.submit-btn:disabled{
    opacity:.7;
    cursor:not-allowed;
}

.spinner{
    width:18px;
    height:18px;
    border:3px solid rgba(255,255,255,.3);
    border-top:3px solid #fff;
    border-radius:50%;
    animation:spin .8s linear infinite;
    display:none;
}

.submit-btn.loading .spinner{
    display:block;
}

.submit-btn.loading span{
    opacity:.8;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

#formMessage{
    margin-top:18px;
    padding:14px;
    border-radius:10px;
    display:none;
    font-size:15px;
}

#formMessage.success{
    display:block;
    background:#d4edda;
    color:#155724;
}

#formMessage.error{
    display:block;
    background:#f8d7da;
    color:#721c24;
}