 /* Hero Section */
 .hero {
   padding: 140px 0 80px;
   text-align: center;
   position: relative;
   overflow: hidden;
 }

 .hero::before {
   content: '';
   position: absolute;
   top: -50%;
   left: -50%;
   width: 200%;
   height: 200%;
   background: radial-gradient(circle, rgba(52, 96, 47, 0.1) 0%, transparent 70%);
   animation: float 20s ease-in-out infinite;
 }

 @keyframes float {

   0%,
   100% {
     transform: translateY(0px) rotate(0deg);
   }

   50% {
     transform: translateY(-20px) rotate(180deg);
   }
 }

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

 .hero h1 {
   font-size: 3.5rem;
   font-weight: 700;
   color: #1e293b;
   margin-bottom: 24px;
   line-height: 1.1;
   background: linear-gradient(135deg, #1e293b, #34602F);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }

 .hero p {
   font-size: 1.25rem;
   color: #64748b;
   margin-bottom: 40px;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
 }

 .hero-buttons {
   display: flex;
   gap: 16px;
   justify-content: center;
   flex-wrap: wrap;
 }

 /* Features Section */
 .features {
   padding: 80px 0;
   background: rgba(255, 255, 255, 0.5);
 }

 .features h2 {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 64px;
   color: #1e293b;
 }

 .features-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 32px;
 }

 .feature-card {
   background: rgba(255, 255, 255, 0.8);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: 16px;
   padding: 32px;
   text-align: center;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
 }

 .feature-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, #34602F, #1e293b);
 }

 .feature-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .feature-icon {
   width: 64px;
   height: 64px;
   background: linear-gradient(135deg, #1e293b, #334155);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 24px;
   color: white;
   font-size: 24px;
   box-shadow: 0 8px 16px rgba(30, 41, 59, 0.3);
 }

 .feature-card h3 {
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 16px;
   color: #1e293b;
 }

 .feature-card p {
   color: #64748b;
   line-height: 1.6;
 }

 /* CTA Section */
 .cta {
   padding: 100px 0;
   text-align: center;
   background: linear-gradient(135deg, rgba(52, 96, 47, 0.1), rgba(30, 41, 59, 0.1));
   position: relative;
   overflow: hidden;
 }

 .cta::before {
   content: '';
   position: absolute;
   top: -50%;
   right: -50%;
   width: 200%;
   height: 200%;
   background: radial-gradient(circle, rgba(30, 41, 59, 0.1) 0%, transparent 70%);
   animation: float 25s ease-in-out infinite reverse;
 }

 .cta-content {
   background: rgba(255, 255, 255, 0.9);
   backdrop-filter: blur(15px);
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: 20px;
   padding: 48px;
   max-width: 600px;
   margin: 0 auto;
   position: relative;
   z-index: 2;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .cta h2 {
   font-size: 2.25rem;
   font-weight: 700;
   margin-bottom: 16px;
   color: #1e293b;
 }

 .cta p {
   font-size: 1.125rem;
   color: #64748b;
   margin-bottom: 32px;
 }

 /* Footer */
 .footer {
   background: #1e293b;
   color: white;
   padding: 32px 0;
   text-align: center;
 }

 .footer p {
   color: #94a3b8;
 }

 /* Mobile Responsive */
 @media (max-width: 768px) {
   .nav-links {
     display: none;
   }

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

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

   .hero-buttons {
     flex-direction: column;
     align-items: center;
   }

   .btn {
     width: 100%;
     max-width: 280px;
     justify-content: center;
   }

   .features h2 {
     font-size: 2rem;
   }

   .cta h2 {
     font-size: 1.875rem;
   }

   .cta-content {
     padding: 32px 24px;
   }
 }

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

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .hero-content {
   animation: fadeInUp 0.8s ease-out;
 }

 .feature-card {
   animation: fadeInUp 0.8s ease-out;
 }

 .feature-card:nth-child(2) {
   animation-delay: 0.2s;
 }

 .feature-card:nth-child(3) {
   animation-delay: 0.4s;
 }
