/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0e1013;
  color: #e4e4e7;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1a1d23;
  
  height: 115px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.logo img {
  height: 115px;
  width: auto;
  display: block;
  
}

.nav-links a {
  color: #e4e4e7;
  margin-left: 25px;
  margin-right: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #78c257;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(145deg, #12161c, #0e1013);
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero .tagline {
  font-size: 1.2rem;
  color: #78c257;
}

.hero .btn {
  margin-top: 30px;
  display: inline-block;
  background: #78c257;
  color: #0e1013;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.hero .btn:hover {
  background: #64a948;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2rem;
  color: #78c257;
  margin: 60px 0 40px;
}

/* Card Grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.card {
  background: #1a1d23;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s;
  text-align: left;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  color: #e4e4e7;
  margin-bottom: 10px;
}

.card p {
  color: #b0b3b8;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Plans Page */
.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.plan-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #2e2e2e;
  width: 250px;
  text-align: center;
  transition: all 0.3s ease;
}

.plan-card:hover {
  border-color: #78c257;
  box-shadow: 0 0 12px #78c25733;
}

.plan-card h3 {
  font-size: 22px;
  color: #fff;
}

.price {
  font-size: 20px;
  font-weight: bold;
  color: #78c257;
  margin: 15px 0;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  color: #ccc;
  margin-bottom: 20px;
}

.plan-card ul li {
  margin: 8px 0;
}

.plan-button {
  display: inline-block;
  background-color: #78c257;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}

.plan-button:hover {
  background-color: #6db24d;
}

/* Info Lists (plugins, extras) */
.info-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.info-section h4 {
  color: #78c257;
  margin-bottom: 15px;
}

.info-section ul {
  list-style: none;
  padding-left: 0;
}

.info-section ul li {
  margin-bottom: 8px;
  color: #ccc;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px;
  background: #12161c;
  font-size: 0.85rem;
  color: #777;
}
/* ---------- GET STARTED PAGE STYLES ---------- */

.plans-section {
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  color: #78c257;
  margin-bottom: 20px;
  font-weight: bold;
}

.sub-title {
  font-size: 1.5rem;
  margin: 30px 0 10px;
  color: #78c257;
  font-weight: bold;
}

.text-list.numbered {
  list-style-position: outside;
  padding-left: 20px;
  margin: 0 auto 30px;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
  max-width: 600px;
}

.section-title {
  font-size: 2rem;
  color: #78c257;
  margin-bottom: 10px;
}

.intro-text {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 40px;
}

.sub-title {
  font-size: 1.4rem;
  color: #78c257;
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-list.numbered {
  list-style-position: inside;
  padding-left: 0;
  margin: 0 auto 30px auto;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

.text-list.numbered li {
  text-align: left;
  margin: 0 auto;
  max-width: 600px;
}

.inline-btn {
  background-color: #78c257;
  color: #0f0f0f;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.inline-btn:hover {
  background-color: #6ab34d;
  color: #000;
}

.whatsapp-btn {
  display: inline-block;
  background-color: #25d366;
  color: #000;
  padding: 12px 28px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.whatsapp-btn:hover {
  background-color: #1ebd5a;
  
}.plans-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.plans-section .section-title,
.plans-section .intro-text,
.plans-section .sub-title,
.plans-section .text-list,
.plans-section .whatsapp-btn {
  margin-left: auto;
  margin-right: auto;
}

.text-list.numbered {
  list-style-position: inside;
  padding-left: 0;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 1rem;
  color: #e4e4e7;
  max-width: 600px;
}

.sub-title {
  font-size: 1.5rem;
  color: #78c257;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    position: relative;
  }

  .logo {
    margin-bottom: 10px;
  }

  .logo img {
    height: 115px;
  }

  .nav-links {
    display: flex;
    justify-content: space-around;
    width: 100%;
    background-color: #1a1d23;
    padding: 10px 0;
    position: relative;
    top: 0;
    z-index: 10;
  }

  .nav-links a {
    font-size: 16px;
    color: #e4e4e7;
    text-decoration: none;
    font-weight: 500;
  }

  .nav-links a:hover {
    color: #78c257;
  }
}