/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #064e3b;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Main Container */
.main-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 50%, #ecfeff 100%);
}

/* Header */
.header {
  padding: 1.5rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #059669;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: #064e3b;
}

.badge {
  background: #d1fae5;
  color: #064e3b;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Hero Section */
.hero {
  padding: 3rem 0;
  text-align: center;
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #064e3b;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  display: block;
  color: #0d9488;
}

.hero-description {
  font-size: 1.25rem;
  color: #047857;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  position: relative;
  margin-bottom: 3rem;
}

.hero-image img {
  width: 100%;
  max-width: 50rem;
  height: 25rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 78, 59, 0.2), transparent);
  border-radius: 1rem;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: #064e3b;
  font-weight: 600;
}

.coming-soon-badge i {
  color: #059669;
}

/* Features Section */
.features {
  padding: 4rem 0;
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  color: #064e3b;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid #a7f3d0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.feature-icon.shield {
  background: #d1fae5;
  color: #059669;
}

.feature-icon.users {
  background: #ccfbf1;
  color: #0d9488;
}

.feature-icon.electric {
  background: #cffafe;
  color: #0891b2;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #064e3b;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: #047857;
}

/* Signup Section */
.signup {
  padding: 4rem 0;
}

.signup-content {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}

.signup-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #064e3b;
  margin-bottom: 1rem;
}

.signup-description {
  color: #047857;
  margin-bottom: 2rem;
}

.signup-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid #a7f3d0;
  border-radius: 0.5rem;
  padding: 2rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.email-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #a7f3d0;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: #34d399;
}

.signup-button {
  background: #059669;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.signup-button:hover {
  background: #047857;
}

.signup-note {
  font-size: 0.875rem;
  color: #059669;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid #a7f3d0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.contact-icon {
  font-size: 2rem;
  color: #059669;
  margin-bottom: 1rem;
}

.contact-title {
  font-weight: 600;
  color: #064e3b;
  margin-bottom: 0.5rem;
}

.contact-info {
  color: #047857;
}

/* Footer */
.footer {
  background: #064e3b;
  color: white;
  padding: 2rem 0;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  background: #059669;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: bold;
}

.footer-tagline {
  color: #a7f3d0;
  margin-bottom: 1rem;
}

.footer-copyright {
  color: #6ee7b7;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  .signup-form {
    flex-direction: row;
  }

  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

/* Success Message Styles */
.success-message {
  background: #d1fae5;
  color: #065f46;
  padding: 1rem;
  border-radius: 0.375rem;
  margin-top: 1rem;
  display: none;
}

.success-message.show {
  display: block;
}
