/* Color Palette Variables */
:root {
    --primary-green: #6DB58A;
    --primary-yellow: #F4D03F;
    --primary-green-dark: #4A7C59;
    --primary-green-light: #B8E6C1;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(109, 181, 138, 0.3);
}

.cta-btn::after {
    display: none;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.3s ease;
    border: none;
}

.dropdown-link:hover {
    background: var(--primary-green-light);
    color: var(--primary-green-dark);
}

.dropdown-link i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
}

.dropdown-link:hover i {
    background: var(--primary-green-dark);
}

.dropdown-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.dropdown-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.3;
}

.dropdown-link:hover .dropdown-desc {
    color: var(--gray-600);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--gray-100) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

/* Animated Background */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(109, 181, 138, 0.25);
    animation: float 15s infinite linear;
    box-shadow: 0 0 20px rgba(109, 181, 138, 0.15);
    backdrop-filter: blur(1px);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
    background: rgba(109, 181, 138, 0.3);
    box-shadow: 0 0 30px rgba(109, 181, 138, 0.2);
}

.shape-2 {
    width: 160px;
    height: 160px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 22s;
    background: rgba(244, 208, 63, 0.25);
    box-shadow: 0 0 40px rgba(244, 208, 63, 0.2);
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 25s;
    background: rgba(109, 181, 138, 0.2);
    box-shadow: 0 0 25px rgba(109, 181, 138, 0.15);
}

.shape-4 {
    width: 140px;
    height: 140px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
    animation-duration: 24s;
    background: rgba(74, 124, 89, 0.2);
    box-shadow: 0 0 35px rgba(74, 124, 89, 0.15);
}

.shape-5 {
    width: 130px;
    height: 130px;
    top: 10%;
    right: 10%;
    animation-delay: -8s;
    animation-duration: 26s;
    background: rgba(109, 181, 138, 0.25);
    box-shadow: 0 0 30px rgba(109, 181, 138, 0.18);
}

.shape-6 {
    width: 110px;
    height: 110px;
    top: 70%;
    left: 60%;
    animation-delay: -12s;
    animation-duration: 21s;
    background: rgba(184, 230, 193, 0.3);
    box-shadow: 0 0 25px rgba(184, 230, 193, 0.2);
}

/* Additional Shapes */
.shape-7 {
    width: 80px;
    height: 80px;
    top: 5%;
    left: 50%;
    animation-delay: -18s;
    animation-duration: 28s;
    background: rgba(244, 208, 63, 0.2);
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.15);
}

.shape-8 {
    width: 95px;
    height: 95px;
    top: 85%;
    right: 5%;
    animation-delay: -22s;
    animation-duration: 30s;
    background: rgba(109, 181, 138, 0.28);
    box-shadow: 0 0 25px rgba(109, 181, 138, 0.2);
}

.shape-9 {
    width: 75px;
    height: 75px;
    top: 45%;
    left: 5%;
    animation-delay: -25s;
    animation-duration: 27s;
    background: rgba(74, 124, 89, 0.25);
    box-shadow: 0 0 22px rgba(74, 124, 89, 0.18);
}

/* Additional Gradient Orb */
.orb-4 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(184, 230, 193, 0.18) 0%, rgba(184, 230, 193, 0.08) 50%, transparent 70%);
    top: 20%;
    right: 50%;
    animation-delay: -6s;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(109, 181, 138, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s infinite linear;
}

.particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 70%;
    left: 80%;
    animation-delay: -2s;
    animation-duration: 12s;
    background: rgba(244, 208, 63, 0.8);
}

.particle:nth-child(3) {
    top: 30%;
    left: 70%;
    animation-delay: -4s;
    animation-duration: 10s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 25%;
    animation-delay: -6s;
    animation-duration: 9s;
    background: rgba(74, 124, 89, 0.7);
}

.particle:nth-child(5) {
    top: 15%;
    left: 85%;
    animation-delay: -1s;
    animation-duration: 11s;
}

.particle:nth-child(6) {
    top: 60%;
    left: 10%;
    animation-delay: -3s;
    animation-duration: 13s;
    background: rgba(184, 230, 193, 0.9);
}

.particle:nth-child(7) {
    top: 40%;
    left: 90%;
    animation-delay: -5s;
    animation-duration: 7s;
}

.particle:nth-child(8) {
    top: 90%;
    left: 60%;
    animation-delay: -7s;
    animation-duration: 14s;
    background: rgba(244, 208, 63, 0.6);
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 6s ease-in-out infinite;
    opacity: 1;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(109, 181, 138, 0.25) 0%, rgba(109, 181, 138, 0.1) 50%, transparent 70%);
    top: -15%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.2) 0%, rgba(244, 208, 63, 0.08) 50%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation-delay: -4s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.15) 0%, rgba(74, 124, 89, 0.05) 50%, transparent 70%);
    top: 50%;
    left: 30%;
    animation-delay: -2s;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-40px) translateX(20px) rotate(90deg) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) translateX(-25px) rotate(180deg) scale(0.9);
        opacity: 0.9;
    }
    75% {
        transform: translateY(15px) translateX(-15px) rotate(270deg) scale(1.05);
        opacity: 0.95;
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(360deg) scale(1);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    33% {
        transform: scale(1.15);
        opacity: 1;
    }
    66% {
        transform: scale(0.95);
        opacity: 0.9;
    }
}

/* Enhanced background pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(109, 181, 138, 0.12) 0%, rgba(109, 181, 138, 0.05) 40%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(244, 208, 63, 0.08) 0%, rgba(244, 208, 63, 0.03) 40%, transparent 70%),
        radial-gradient(circle at 40% 80%, rgba(74, 124, 89, 0.1) 0%, rgba(74, 124, 89, 0.04) 40%, transparent 70%),
        radial-gradient(circle at 60% 30%, rgba(184, 230, 193, 0.09) 0%, rgba(184, 230, 193, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: backgroundShift 30s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
    25% {
        opacity: 0.9;
        transform: translateX(15px) translateY(-10px) scale(1.02);
    }
    50% {
        opacity: 1;
        transform: translateX(-10px) translateY(15px) scale(0.98);
    }
    75% {
        opacity: 0.95;
        transform: translateX(12px) translateY(5px) scale(1.01);
    }
}

/* Additional Dynamic Effects */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(109, 181, 138, 0.03) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(244, 208, 63, 0.02) 50%, transparent 52%);
    background-size: 60px 60px;
    animation: patternMove 25s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes patternMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(60px) translateY(60px);
    }
}

/* Glow effects for shapes */
.shape:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 0 40px rgba(109, 181, 138, 0.4) !important;
    transition: all 0.3s ease;
}

.shape-2:hover {
    box-shadow: 0 0 50px rgba(244, 208, 63, 0.4) !important;
}

/* Performance optimizations */
.hero-bg-animation * {
    will-change: transform, opacity;
}

/* Parallax effect for shapes on scroll */
@media (prefers-reduced-motion: no-preference) {
    .shape {
        transition: transform 0.3s ease-out;
    }
    
    .gradient-orb {
        transition: transform 0.5s ease-out;
    }
}

/* Reduce animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .shape,
    .gradient-orb,
    .hero::before {
        animation: none;
    }
    
    .shape {
        opacity: 0.3;
    }
    
    .gradient-orb {
        opacity: 0.2;
    }
}

/* Responsive adjustments for mobile - Keep animations prominent */
@media (max-width: 768px) {
    .shape {
        transform: scale(0.8);
    }
    
    .gradient-orb {
        transform: scale(0.9);
        filter: blur(50px);
    }
    
    .orb-1 {
        width: 280px;
        height: 280px;
    }
    
    .orb-2 {
        width: 250px;
        height: 250px;
    }
    
    .orb-3 {
        width: 220px;
        height: 220px;
    }
    
    .orb-4 {
        width: 200px;
        height: 200px;
    }
    
    /* More visible particles on mobile */
    .particle {
        width: 6px;
        height: 6px;
    }
    
    /* Faster animations on mobile */
    .shape {
        animation-duration: 18s !important;
    }
    
    .gradient-orb {
        animation-duration: 5s !important;
    }
}

/* Hero visible state animations */
.hero-visible .shape {
    animation-play-state: running;
}

.hero-visible .gradient-orb {
    animation-play-state: running;
}

/* Additional subtle effects */
.hero-content {
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    pointer-events: none;
    z-index: -1;
}

.hero-visible .hero-content::before {
    opacity: 1;
}

/* Floating animation for hero image */
.hero-image {
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

/* Breathing effect for stats */
.hero-stats {
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Subtle glow effect for CTA buttons on hover */
.hero-cta .btn-primary:hover {
    box-shadow: 
        0 10px 30px rgba(109, 181, 138, 0.4),
        0 0 0 1px rgba(109, 181, 138, 0.1);
}

.hero-cta .btn-secondary:hover {
    box-shadow: 
        0 10px 25px rgba(109, 181, 138, 0.2),
        inset 0 0 0 1px rgba(109, 181, 138, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23667eea" opacity="0.1"/><circle cx="20" cy="20" r="1" fill="%23764ba2" opacity="0.1"/><circle cx="80" cy="30" r="1.5" fill="%23667eea" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

.highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(109, 181, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(109, 181, 138, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(109, 181, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    font-size: 8rem;
    position: absolute;
    opacity: 0.3;
}

.hero-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-benefits li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.feature-cta {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-cta:hover {
    transform: translateX(5px);
}

/* How It Works Section */
.how-it-works {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4rem;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: white;
}

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

.testimonial-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--gray-800);
}

.author-role {
    color: var(--gray-600);
    font-size: 0.9rem;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-green);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 30px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--gray-50);
        border-radius: 8px;
        margin-top: 0.5rem;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-link {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
    
    .dropdown-link i {
        width: 18px;
        height: 18px;
        font-size: 0.8rem;
    }
    
    .dropdown-title {
        font-size: 0.9rem;
    }
    
    .dropdown-desc {
        font-size: 0.75rem;
    }
    
    /* Add yellow accent for special elements */
    .feature-card:nth-child(2) .feature-icon {
        background: linear-gradient(135deg, var(--primary-yellow) 0%, #E6C547 100%);
    }
    
    .feature-card:nth-child(2) .feature-icon i {
        color: var(--gray-800);
    }
    
    .step:nth-child(2) .step-number {
        background: linear-gradient(135deg, var(--primary-yellow) 0%, #E6C547 100%);
        color: var(--gray-800);
    }
    
    .step:nth-child(2)::after {
        background: linear-gradient(135deg, var(--primary-yellow) 0%, #E6C547 100%);
    }
    
    /* Yellow accent for second dropdown item (Kalkulator) */
    .dropdown-menu li:nth-child(2) .dropdown-link i {
        background: var(--primary-yellow);
        color: var(--gray-800);
    }
    
    .dropdown-menu li:nth-child(2) .dropdown-link:hover i {
        background: #E6C547;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step::after {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

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

[data-aos="fade-up"] {
    animation: fadeInUp 0.8s ease-out;
}

[data-aos="fade-right"] {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
}