  :root {
    --primary-green: #2E8B57;
    --accent-lime: #89C77B;
    --neutral-sand: #F7F4EF;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  * {
    box-sizing: border-box;
  }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-lime));
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    padding: 16px 32px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
  }

  .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
  }

  .btn-secondary-custom {
    background: var(--neutral-sand);
    border: 2px solid var(--primary-green);
    border-radius: 8px;
    color: var(--primary-green);
    font-weight: 600;
    padding: 14px 28px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .btn-secondary-custom:hover {
    background: var(--primary-green);
    color: white;
  }

  /* Header */
  .navbar {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(46, 139, 87, 0.1);
    padding: 1rem 0;
  }

  .navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-green) !important;
  }

  .logo-placeholder {
    width: 120px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-lime));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
  }

  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-lime) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2053&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
  }

  @media (max-width: 768px) {
    .hero {
      padding: 80px 0 60px;
    }

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

    .hero p {
      font-size: 1.1rem;
    }
  }

  /* Benefits Section */
  .benefits {
    padding: 80px 0;
    background: var(--neutral-sand);
  }

  .benefit-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(46, 139, 87, 0.1);
  }

  .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
  }

  .benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-lime));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
  }

  .benefit-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
  }

  .benefit-card p {
    color: var(--text-light);
    margin-bottom: 0;
  }

  /* How It Works Section */
  .how-it-works {
    padding: 80px 0;
    background: white;
  }

  .step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
  }

  .step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-lime), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
  }

  .step h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
  }

  .step p {
    color: var(--text-light);
    margin-bottom: 0;
  }

  /* Timeline connector for desktop */
  @media (min-width: 992px) {
    .step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -50%;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-lime), var(--primary-green));
      transform: translateY(-50%);
      z-index: 1;
    }
  }

  /* Pricing Section */
  .pricing {
    padding: 80px 0;
    background: var(--neutral-sand);
  }

  .pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(46, 139, 87, 0.1);
    position: relative;
  }

  .pricing-card.featured {
    border: 3px solid var(--primary-green);
    transform: scale(1.05);
  }

  .pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
  }

  .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
  }

  .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
  }

  .price-period {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
  }

  .pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
  }

  .pricing-features li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 0.5rem;
  }

  /* Modal */
  .modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
  }

  .modal-header {
    border-bottom: 1px solid rgba(46, 139, 87, 0.1);
    padding: 2rem 2rem 1rem;
  }

  .modal-body {
    padding: 1rem 2rem 2rem;
  }

  .modal-title {
    color: var(--primary-green);
    font-size: 1.8rem;
  }

  .form-control {
    border-radius: 8px;
    border: 2px solid rgba(46, 139, 87, 0.2);
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }

  .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
  }

  .fine-print {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
  }

  /* Footer */
  .footer {
    background: var(--primary-green);
    color: white;
    padding: 2rem 0;
  }

  .footer a {
    color: var(--accent-lime);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer a:hover {
    color: white;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
  }

  @media (max-width: 768px) {
    .footer-links {
      flex-direction: column;
      gap: 1rem;
    }
  }

  /* Utilities */
  .text-primary-custom {
    color: var(--primary-green) !important;
  }

  .bg-primary-custom {
    background-color: var(--primary-green) !important;
  }

  .section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-align: center;
  }

  .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
  }
.navbar-brand img { height: 40px; }
.navbar .nav-link { color:#1a1a1a; }
.navbar .nav-link:hover { color:#2E8B57; }
/* Vertically center nav links */
.navbar-nav { align-items: center; }          /* centers <li>s inside <ul> */
