*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter', sans-serif;
  overflow-x:hidden;
  color:#0c1323;
}

a{ text-decoration:none; }

section{ width:100%; }

/* =============================
   NAVBAR
============================= */

.navbar{
  position:fixed;
  top:0;left:0;
  width:100%;
  z-index:1000;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
  padding:14px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.container{
  width:86%;
  margin:auto;
}

.nav-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:42px;
  object-fit:contain;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:28px;
}

.nav-links li a{
  text-decoration:none;
  color:#0c1323;
  font-weight:600;
  padding:6px 10px;
  border-radius:10px;
  transition:.25s;
}

.nav-links li a:hover{
  background:linear-gradient(90deg,#9A0059,#B21477,#ad3983);
  color:#fff;
}
.nav-links a:hover,
.nav-links .active{
  background:#9A0059;
  color:#fff;
}
.menu-btn{
  display:none;
  font-size:28px;
  font-weight:900;
  cursor:pointer;
}





/* ============ BENEFITS ============ */

.section-title{
  text-align:center;
  font-family:'Paytone One';
  font-size:42px;
  margin-bottom:30px;
}

.benefits{
  padding:80px 0;
  background:#fff;
}

.benefit-grid{
  width:86%;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.card{
  background:#fff;
  border-radius:16px;
  padding:22px;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}


/* ============ STEPS SECTION ============ */

.steps{
  padding:80px 0;
  background:#FFFBF4;
}

.steps-grid{
  width:86%;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.step{
  border-radius:16px;
  background:#fff;
  padding:22px;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}

.num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:50%;
  background:#9A0059;
  color:#fff;
  font-weight:700;
  margin-bottom:10px;
}


/* ============ APPLY FORM ============ */

.apply{
  padding:90px 0;
}

.apply-form{
  width:86%;
  max-width:700px;
  margin:20px auto 0;
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.field{
  margin-bottom:14px;
}

label{
  font-weight:600;
  display:block;
  margin-bottom:6px;
}

input,
textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #ccc;
  outline:none;
}

textarea{ resize:none; }

.apply-form button{
  margin-top:10px;
  border:0;
}


/* footer */
.footer{
  background:#fff;
  padding:70px 6% 50px;
  border-top:1px solid #eee;
}

.footer-container{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:60px;
}

.footer-logo{
  width:170px;
  margin-bottom:12px;
}

.footer-heading{
  margin:18px 0 10px;
  font-weight:700;
  font-family: paytone one, sans-serif;
}

.store-buttons a img{
  width:170px;
  margin:8px 0;
  cursor:pointer;
}

.social-icons{
  margin-top:16px;
}

.social-icons i{
  font-size:22px;
  margin-right:10px;
  cursor:pointer;
}

.footer-col h4{
  margin-bottom:14px;
  font-weight:800;
  font-family: paytone one, sans-serif;
}

.footer-col a,
.footer-col p{
  display:block;
  font-family: paytone one, sans-serif;
  margin:7px 0;
  color:#333;
  text-decoration:none;
}

.footer-col a:hover{
  color:#9A0059;
}

.footer-bottom{
  margin-top:50px;
  text-align:center;
  font-size:14px;
  color:#444;
}

/* ===== RESPONSIVE ===== */

@media(max-width:1000px){
  .footer-container{
    grid-template-columns:1fr 1fr;
    gap:35px;
  }
}

@media(max-width:700px){
  .footer-container{
    grid-template-columns:1fr;
  }

  .footer{
    text-align:center;
  }

  .social-icons i{
    margin-right:6px;
  }
}

/* ============ RESPONSIVE ============ */

/* ===== HOST HERO SECTION ===== */

.host-hero{
  padding:160px 0 80px;
  background:#fff;
}

.host-wrap{
  width:86%;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  align-items:center;
  gap:60px;
}

.host-text h1{
  font-family:'Paytone One';
  font-size:70px;
  line-height:1.05;
  color:#071628;
}

.host-text h3{
  margin:18px 0 14px;
  font-weight:700;
  color:#071628;
}

.host-text p{
  font-size:18px;
  line-height:1.6;
  margin-bottom:26px;
}

.join-btn{
  display:inline-flex;
  align-items:center;
  gap:14px;

  background:#f1bc0d;
  padding:16px 28px;
  border-radius:14px;
  text-decoration:none;

  font-family: 'Inter', sans-serif;
  font-weight:700;
  font-size:18px;
  color:#0f172a;

  box-shadow: 0 12px 25px rgba(0,0,0,.12);
  transition: background .25s ease, box-shadow .25s ease;
}

/* WHITE ARROW CONTAINER */
.join-btn .icon{
  width:44px;
  height:44px;
  border-radius:12px;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;

  font-size:22px;
  color:#0f172a;

  /* IMPORTANT — NO SLIDE */
  transform:none !important;
  transition:none !important;
}

.join-btn:hover{
  background:#e2aa00;
  box-shadow: 0 18px 28px rgba(0,0,0,.18);
}


.host-img img{
  width:100%;
  max-width:520px;
}


@media(max-width:720px){

  .menu-btn{ display:block; }

  .nav-links{
    position:absolute;
    top:100%;
    right:0;
    width:100%;
    flex-direction:column;
    background:#fff;
    padding:16px 0;
    gap:10px;
    opacity:0;
    pointer-events:none;
    transition:.25s;
  }

  .nav-links.show{
    opacity:1;
    pointer-events:auto;
  }

  .benefit-grid,
  .steps-grid{
    grid-template-columns:1fr;
  }
}
