/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #f3f4f6;
  background: #0f172a;
  overflow-x: hidden;
}

h1, h2 {
  font-weight: 800;
}

.logo h1 {
  font-size: 2rem;
  background: linear-gradient(135deg, #22c55e, #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo span {
  color: #22c55e;
}

/* Navbar */
.navbar {
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 70%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-content {
  max-width: 1100px;
  margin-top: 80px;
}

.badge {
  display: inline-block;
  background: #22c55e;
  color: black;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.highlight {
  background: linear-gradient(135deg, #22c55e, #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  text-align: left;
}

.feature {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.feature i {
  color: #22c55e;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* CTA */
.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  background: #22c55e;
  color: black;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.5);
}

.no-cc {
  margin-top: 1rem;
  opacity: 0.8;
  font-size: 1.1rem;
}

.trust-badges {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-badges img {
  height: 40px;
  filter: grayscale(100%) brightness(2);
  opacity: 0.7;
  transition: 0.3s;
}

.trust-badges img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #1e293b;
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: slideDown 0.4s ease;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: #94a3b8;
}

.modal h2 {
  margin-bottom: 1rem;
}

.options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.options button {
  padding: 1rem;
  background: rgba(34,197,94,0.1);
  border: 2px solid #22c55e;
  color: white;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.options button:hover {
  background: #22c55e;
  color: black;
}

form label {
  display: block;
  margin: 1.5rem 0 0.5rem;
  text-align: left;
  font-weight: 600;
}

form input, form select {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
}

@keyframes slideDown {
  from { transform: translateY(-100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem;
  background: #0f172a;
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2.8rem; }
  .subtitle { font-size: 1.1rem; }
  .features-grid { grid-template-columns: 1fr; }
  .mobile-menu-btn { display: block; }
}