body {
font-family: Arial, sans-serif;
margin: 0;
background: #0f172a;
color: white;
text-align: center;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.hero {
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: #cbd5f5;
  margin-top: 15px;
}
.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 16px 28px;
  background: #22c55e;
  color: #022c22;
  text-decoration: none;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.2s;
}

.btn:hover {
  background: #16a34a;
  transform: scale(1.05);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #1e293b;
  padding: 25px;
  border-radius: 12px;
  width: 220px;
  font-size: 0.95rem;
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  background: #334155;
}

.cta {
margin-top: 40px;
}

.footer {
background: #020617;
padding: 40px 20px;
margin-top: 60px;
}

.footer .social {
margin: 10px 0;
}

.benefits {
  background: #020617;
  border-radius: 20px;
}

.screen {
  text-align: center;
}

.screen p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.screens .sub {
color: #cbd5f5;
margin-bottom: 30px;
}

.screens-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}

.screens-grid img {
width: 300px;
border-radius: 12px;
transition: 0.2s;
}

.screens-grid img:hover {
  transform: scale(1.05);
}

.cta-text {
margin-top: 30px;
font-size: 1.1rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}