@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --primary: #22A340; /* Brighter modern green */
  --primary-dark: #22A340; /* Darker, sleek green */
  --secondary: #28c2f3; /* Slightly cooler blue */
  --dark: #111827; /* Rich dark slate */
  --light: #f9fafb; /* Soft light background */
  --gray: #e5e7eb; /* Modern gray from Tailwind-inspired palette */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
}

body {
  line-height: 1.6;
  color: var(--dark);
  background-color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

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

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px; /* adjust based on design */
  width: auto;
  display: block;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
}

.logo span {
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--primary);
}

.nav-cta {
  background-color: var(--primary);
  color: white !important;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
}

/* Hero Section */
.hero {
  padding: 180px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 40%,
    rgba(37, 211, 102, 0.2) 100%
  );
}

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

.hero-text {
  width: 50%;
}

.hero-text h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

.hero-image {
  width: 45%;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.secondary-cta {
  display: inline-block;
  margin-left: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(37, 211, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  color: var(--primary);
  font-size: 28px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-desc {
  color: #666;
}

/* USP Section */
.usp {
  padding: 100px 0;
  background-color: var(--light);
}

.usp-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.usp-item {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: all 0.3s;
}

.usp-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.usp-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(37, 211, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.usp-icon i {
  color: var(--primary);
  font-size: 24px;
}

.usp-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.usp-content p {
  color: #666;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background-color: white;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-table {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  width: 300px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.pricing-table:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-popular {
  background-color: var(--primary-dark);
  color: white;
  padding: 8px 0;
  position: absolute;
  top: 20px;
  right: -30px;
  transform: rotate(45deg);
  width: 150px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray);
  margin-bottom: 30px;
}

.pricing-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.pricing-price .currency {
  position: absolute;
  top: 5px;
  left: -15px;
  font-size: 20px;
  font-weight: 600;
}

.pricing-price .period {
  font-size: 16px;
  color: #888;
  font-weight: 500;
}

.pricing-old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 20px;
  margin-bottom: 5px;
}

.pricing-limit {
  color: #777;
  font-size: 14px;
  margin-top: 5px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray);
  color: #555;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.pricing-button:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.pricing-timer {
  margin-top: 60px;
  text-align: center;
  padding: 15px;
  background-color: rgba(37, 211, 102, 0.1);
  border-radius: 10px;
}

.pricing-timer p {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 18px;
  margin-bottom: 10px;
}

.timer-countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.timer-item {
  background-color: white;
  border-radius: 8px;
  padding: 10px;
  min-width: 60px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.timer-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
}

.timer-label {
  font-size: 12px;
  color: #777;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  color: white;
  text-align: center;
}

a {
  color: inherit; /* or your preferred default color */
  text-decoration: none; /* optional: removes underline */
}

a:visited {
  color: inherit; /* or same as a */
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-white-button {
  display: inline-block;
  background-color: white;
  color: var(--primary-dark);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-white-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s;
}

.footer-social a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 0 10px 10px;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-text {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-image {
    width: 100%;
  }

  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .pricing-table {
    width: 100%;
    max-width: 350px;
    margin-bottom: 30px;
  }

  .cta-section h2 {
    font-size: 28px;
  }
}
.link {
  text-decoration: none; /* No underline */
}
