@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/*---------------------------*\
 #NAVBAR
\*---------------------------*/

.header {
  background-color: #f5f5f5;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.logo h2 {
  color: #333333;
  font-weight: 600;
  font-size: 1.5rem;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #ffff;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 1rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.user-area {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}

.user-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #245f35;
  color: #fff;
  cursor: pointer;
}

.user-btn:hover {
  background: #1a4a28;
}

.user-menu {
  position: absolute;
  right: 0;
  top: 48px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  display: none;
  z-index: 200;
}

.user-menu.active {
  display: block;
}

.user-menu a {
  display: block;
  text-decoration: none;
  color: #2c3e50;
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.user-menu a:hover {
  background: #e9fbe0;
  color: #245f35;
}

.nav-link {
  text-decoration: none;
  color: #333333;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: transparent;
}

.nav-link:hover {
  background-color: #e9fbe0;
  color: #245f35;
}

.nav-link.active {
  background-color: #245f35;
  color: #ffffff;
}

/*---------------------------*\
 #HERO
\*---------------------------*/

.hero {
  background: linear-gradient(135deg, #f0fce8 0%, #e9fbe0 100%);
  padding: 4rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-illustration {
  position: relative;
}

.illustration-container {
  position: relative;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(36, 95, 53, 0.2);
}

.hero-text {
  padding-left: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #666666;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-button {
  background-color: #245f35;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #1a4a28;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(36, 95, 53, 0.3);
}

/*---------------------------*\
 #ABOUT US
\*---------------------------*/

.about {
  padding: 6rem 0;
  background-color: #ffffff;
}

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  text-align: center;
}

.image-placeholder img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
  padding-left: 2rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #245f35;
  margin-bottom: 1rem;
}

.about-subtitle {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-description {
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.read-more-btn {
  background-color: #245f35;
  color: #ffffff;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: #1a4a28;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(36, 95, 53, 0.3);
}

/*---------------------------*\
 #FEATURES
\*---------------------------*/

.features {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

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

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.features-subtitle {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-card {
  background-color: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(36, 95, 53, 0.15);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-icon img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #245f35;
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
}

/*---------------------------*\
 #PURCHASE
\*---------------------------*/

.purchase {
  padding: 6rem 0;
  background-color: #ffffff;
}

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

.purchase-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.purchase-subtitle {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background-color: #ffffff;
  border: 2px solid #e9fbe0;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(36, 95, 53, 0.15);
}

.pricing-card.featured {
  border-color: #245f35;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(36, 95, 53, 0.2);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #245f35;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-header {
  margin-bottom: 2rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #245f35;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #245f35;
}

.period {
  font-size: 1rem;
  color: #666666;
  font-weight: 500;
}

.plan-features {
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  text-align: left;
}

.features-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-button {
  width: 100%;
  background-color: #245f35;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-button:hover {
  background-color: #1a4a28;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(36, 95, 53, 0.3);
}

.featured-button {
  background-color: #245f35;
  color: #ffffff;
}

.featured-button:hover {
  background-color: #1a4a28;
}

.purchase-cta {
  background: linear-gradient(135deg, #f0fce8 0%, #e9fbe0 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  margin-top: 2rem;
}

.cta-text {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/*---------------------------*\
 #SPONSORS
\*---------------------------*/

.sponsors {
  padding: 6rem 0;
  background-color: #ffffff;
  text-align: center;
}

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

.sponsors-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.sponsors-subtitle {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 3rem;
}

.sponsors-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.sponsor-logo {
  width: 120px;
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.sponsor-logo:hover {
  transform: translateY(-5px);
}

.sponsor-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*---------------------------*\
 #FOOTER
\*---------------------------*/

.footer {
  background-color: #245f35;
  padding: 4rem 0 2rem;
  color: #ffffff;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-input,
.form-textarea {
  padding: 0.875rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #ffffff;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background-color: #333333;
  color: #ffffff;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
}

.sitemap {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sitemap-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sitemap-link:hover {
  color: #e9fbe0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1.2rem;
}

.contact-text {
  font-size: 1rem;
}

.user-info {
  margin: 0 auto;
  padding: 12px 0;
  align-items: center;
  text-align: center;
  font-size: 0.9956rem;
  font-weight: bold;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  .hero-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-text,
  .about-text {
    padding-left: 0;
    text-align: center;
  }

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

  .about-title,
  .sponsors-title,
  .features-title,
  .purchase-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-container,
  .about-container,
  .sponsors-container,
  .footer-container {
    padding: 0 1rem;
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .about-title,
  .sponsors-title,
  .features-title,
  .purchase-title {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .sponsors-logos {
    gap: 1rem;
  }

  .sponsor-logo {
    width: 100px;
    height: 100px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .contact-info {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .menu-toggle {
    display: block;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .about-title,
  .sponsors-title,
  .features-title,
  .purchase-title {
    font-size: 1.5rem;
  }

  .sponsors-logos {
    justify-content: center;
    gap: 0.5rem;
  }

  .sponsor-logo {
    width: 80px;
    height: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.nav-link:focus,
.cta-button:focus,
.read-more-btn:focus,
.submit-btn:focus,
.plan-button:focus,
.form-input:focus,
.form-textarea:focus {
  outline: 2px solid #245f35;
  outline-offset: 2px;
}

@media print {
  .header,
  .footer {
    display: none;
  }

  .hero,
  .about,
  .sponsors {
    break-inside: avoid;
  }
}
