/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: linear-gradient(90deg, #3a802d, #367c2b, #326c26);
  background-size: 400% 100%;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Container Layout */
.container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: env(safe-area-inset-top, 0);
  padding-bottom: 1rem;
  width: 100%;
}

.logo {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  padding-top: 10rem;
  display: block;
}

.social-links {
  display: flex;
  gap: 30px;
  margin-top: 1rem;
  padding-bottom: 15rem;
}

.social-links a {
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
}

.social-links img {
  width: 50px;
  height: 50px;
}

/* Main Content */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem 2rem;
  gap: 2rem;
  width: 100%;
  flex: 1;
}

section, .hero {
  max-width: 800px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 0.8s ease-out forwards;
}

/* Dramatic fade-in delays */
.hero {
  animation-delay: 1s;
}
.about {
  animation-delay: 2s;
}
.services {
  animation-delay: 3s;
}
.how-it-works {
  animation-delay: 3s;
}
.contact {
  animation-delay: 4s;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

section p,
section ul,
section li {
  color: #fff;
  font-size: 1.1rem;
}

section p {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 0.5rem 0;
}

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
}

.cta-button {
  background: #fff;
  color: #367c2b;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.cta-button:hover {
  background: #e0e0e0;
  color: #24561f;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #fff;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Price Grid – Desktop */
.price-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 2rem;
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 500px;
  width: 100%;
}

.price-grid li {
  display: contents;
}

.price-label {
  font-weight: 500;
  text-align: left;
}

.price-value {
  text-align: right;
  justify-self: end;
  font-weight: 500;
}

.italic {
  font-style: italic;
  font-weight: 400;
}

/* Responsive – Mobile */
@media (max-width: 600px) {
  .price-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    margin-top: 2rem;
  }

  .price-grid li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .price-label,
  .price-value {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .price-label {
    margin-bottom: 0.25rem;
  }

  .price-value.italic {
    font-style: italic;
    font-weight: 400;
  }

  .container {
    padding-top: env(safe-area-inset-top, 0);
    padding-bottom: 0.5rem;
  }

  .logo {
    max-width: 300px;
    padding-top: 10rem;
    margin: 0 auto;
  }

  .social-links {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 10rem;
  }

  .social-links img {
    width: 40px;
    height: 40px;
  }

  section {
    padding: 1.5rem;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
