* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: linear-gradient(to bottom, #eef1f6, #ffffff);
  color: #1a1a1a;
}

/* HERO */

.hero {
  text-align: center;
  padding: 80px 20px 60px;
}

.hero h1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
  color: #0c1b33;
  margin-bottom: 20px;
}

.subtext {
  font-size: 15px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-btn {
  background: #f4c542;
  border: none;
  padding: 15px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 15px;
}

a {
	text-decoration: none;
	color:  #0c1b33 ;
	} 

.cta-btn:hover {
  opacity: 0.9;
}

.movement-text {
  color: #2e6b3f;
  font-size: 15px;
}

/* SHOWCASE */

.showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 60px 10%;
  flex-wrap: wrap;
  background-color: #FFFFFF;
}

.phone-mockup img {
  width: 300px;
  border: 2px solid #000A23;
  border-radius: 20px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature span {
  font-size: 30px;
}

.feature h6 {
  font-size: 15px;
  color: #0c1b33;
}

/* FOOTER */

footer {
  background: #0c1b33;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;

}

.install-popup{
position:fixed;
bottom:20px;
left:50%;
transform:translateX(-50%);
background:#000A23;
color:white;
padding:15px 20px;
border-radius:10px;
display:none;
z-index:9999;
width: 50%;
height: 200;
margin-top: -50%;
}

.install-popup button{
margin:5px;
padding:6px 12px;
border:none;
border-radius:5px;
cursor:pointer;
}
