/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Helvetica Neue', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}
a { color: #06c755; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; margin: 0 auto; }

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

/* Hero Section */
.hero {
  background: #ffffff;
  padding: 4rem 1rem 2rem;
  position: relative;
}
.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #06c755;
}
.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #444;
}
.hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 2rem;
}

/* Button */
.btn-primary {
  display: inline-block;
  background: #06c755;
  color: #fff;
  padding: 0.9rem 1.7rem;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s, transform 0.1s;
  animation: pulse 2s infinite;
  font-size: 1.1rem;
  text-align: center;
}
.btn-primary:hover {
  background: #04a648;
}
.btn-primary:active {
  transform: scale(0.96);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(4,159,70,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(4,159,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(4,159,70,0); }
}

/* Profile Section */
.profile-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

/* Features */
.features {
  background: #fff;
  padding: 2rem 1rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.feature-item img {
  width: 80px;
  margin-bottom: 0.75rem;
}
.feature-item p {
  font-size: 1rem;
}

/* Testimonials */
.testimonials blockquote {
  background: #eefdf3;
  border-left: 4px solid #06c755;
  padding: 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}
.testimonials img {
  width: 60px;
}
.testimonials span {
  color: #555;
  font-size: 0.95rem;
}

/* CTA */
.cta {
  background: #06c755;
  color: white;
  padding: 2rem 1rem;
}
.cta h2 {
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: #2c2c2c;
  color: #fff;
  padding: 1rem 0;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: #fff;
  font-size: 0.9rem;
}

/* Floating Button */
.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 999;
  pointer-events: none;
}
.floating-cta a {
  pointer-events: all;
}

/* Countdown */
.countdown-timer {
  font-size: 1.1rem;
  color: #d00;
  font-weight: bold;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .hero-subtitle { font-size: 1rem; }
  .btn-primary { font-size: 1rem; padding: 0.7rem 1.2rem; }
  .feature-item p { font-size: 0.9rem; }
  .testimonials blockquote { font-size: 1rem; padding: 1.2rem; }
}