/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0F4C3A;
    --primary-green: #0D5C4D;
    --accent-lime: #D4FF00;
    --accent-yellow: #E8FF5C;
    --bg-light: #F8F9FA;
    --bg-cream: #FFF9F0;
    --text-dark: #1A1A1A;
    --text-gray: #6B7280;
    --white: #FFFFFF;
    --border-color: #E5E7EB;
    --success: #10B981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo svg {
    color: var(--primary-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 3px;
}

/* Buttons */
.btn-primary {
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 76, 58, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-weight: 600;
}

.btn-download {
    background: var(--accent-lime);
    color: var(--primary-dark);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-download:hover {
    background: var(--accent-yellow);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    padding: 100px 0 60px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.highlight {
    background: linear-gradient(120deg, var(--accent-lime) 0%, var(--accent-yellow) 100%);
    padding: 0 8px;
    border-radius: 4px;
    color: var(--primary-dark);
}

.hero-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}


/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    text-align: center;
}

.trusted-by h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.company-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-gray);
    opacity: 0.6;
}

/* Section Title */
.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 16px;
}

/* Job Opportunities */
.opportunities {
    padding: 80px 0;
    background: var(--white);
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.job-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 76, 58, 0.15);
    border-color: var(--accent-lime);
}

.job-card h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.job-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Showcase Section */
.showcase {
    padding: 80px 0;
    background: var(--bg-light);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    min-height: 600px;
}

.showcase-card {
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.main-card {
    background: linear-gradient(135deg, #D4E8E0 0%, #C8DDD5 100%);
    grid-row: span 2;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.large-card {
    background: linear-gradient(135deg, #D4E8E0 0%, #C8DDD5 100%);
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.showcase-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.balance-display {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    margin: 20px;
    position: relative;
    z-index: 1;
}

.balance-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.balance-display h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.badge-success {
    display: inline-block;
    background: var(--success);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.accent-card {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.icon-badge {
    margin-bottom: 24px;
}

.big-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--accent-lime);
    margin-bottom: 16px;
}

.accent-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.stat-card {
    background: var(--white);
    text-align: center;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card .big-number {
    color: var(--primary-dark);
}

.stat-card p {
    color: var(--text-gray);
    font-size: 18px;
}

/* Growth Section */
.growth {
    padding: 80px 0;
    background: var(--white);
}

.growth-header {
    margin-bottom: 60px;
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.growth-card {
    border-radius: 20px;
    transition: all 0.3s;
    overflow: hidden;
}

.growth-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.growth-card-content {
    padding: 32px;
}

.light-card {
    background: var(--bg-cream);
}

.light-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dark-card {
    background: var(--primary-dark);
    color: var(--white);
}

.dark-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 76, 58, 0.3);
}

.growth-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.green-icon {
    background: var(--accent-lime);
}

.yellow-icon {
    background: transparent;
    border: 2px solid var(--accent-lime);
}

.growth-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.growth-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

.dark-card h3 {
    color: var(--white);
}

.dark-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-lime);
}

.avatar-svg {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.testimonial-header h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testimonial-stats .stat {
    text-align: center;
}

.testimonial-stats strong {
    display: block;
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.testimonial-stats span {
    font-size: 12px;
    color: var(--text-gray);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 1.5;
}

.gallery-item img,
.gallery-item svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover svg {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 76, 58, 0.95), transparent);
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-dark);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-cream);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 32px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-dark);
    color: var(--accent-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 24px;
}

.step-card h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--accent-lime);
    color: var(--primary-dark);
}

.cta .btn-primary:hover {
    background: var(--accent-yellow);
}

.cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand .logo svg {
    color: var(--accent-lime);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-lime);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    padding: 20px 24px;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content::before {
    content: '🍪';
    font-size: 32px;
    flex-shrink: 0;
}

.cookie-content p {
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content p a {
    color: var(--accent-lime);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner .btn-text {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s;
}

.cookie-banner .btn-text:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.cookie-banner .btn-primary {
    background: var(--accent-lime);
    color: var(--primary-dark);
    padding: 10px 24px;
    font-size: 14px;
}

.cookie-banner .btn-primary:hover {
    background: var(--accent-yellow);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }
    
    .main-card {
        grid-row: span 1;
        min-height: 400px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-large {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .job-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .growth-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn-large {
        width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .cookie-content::before {
        font-size: 24px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .cookie-banner .btn-text,
    .cookie-banner .btn-primary {
        flex: 1;
        text-align: center;
    }
    
    .logo-grid {
        gap: 30px;
    }
    
    .company-logo {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .big-number {
        font-size: 48px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.testimonial-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}