* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #00AE00;
    --text-green: #007A00;
    --white: #FFFFFF;
    --dark-gray: #2a2a2a;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* Header */
header {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-gray);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

header .container.header-with-profile {
    justify-content: space-between;
}

.profile-button {
    background: var(--primary-green);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    height: 44px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-button:hover {
    background: #008800;
    transform: translateY(-2px);
}

.profile-button:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.auth-buttons-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.register-button {
    background: var(--primary-green);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    height: 44px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-button:hover {
    background: #008800;
    transform: translateY(-2px);
}

.register-button:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.login-button {
    background: transparent;
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 2px solid var(--primary-green);
    height: 44px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-button:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.login-button:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.logout-button {
    background: #dc3545;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    height: 44px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-button:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.logout-button:focus {
    outline: 2px solid #dc3545;
    outline-offset: 2px;
}

.balance-display {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e9;
    color: #155724;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #a5d6a7;
    height: 44px;
    box-sizing: border-box;
}

.balance-amount {
    font-family: 'Lexend', sans-serif;
    letter-spacing: 0.5px;
}

.rent-page-button {
    background: var(--primary-green);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    height: 44px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rent-page-button:hover {
    background: #008800;
    transform: translateY(-2px);
}

.rent-page-button:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.admin-console-button {
    background: var(--primary-green);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    height: 44px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-console-button:hover {
    background: #008800;
    transform: translateY(-2px);
}

.admin-console-button:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.user-menu {
    position: relative;
}

.menu-button {
    background: var(--primary-green);
    border: none;
    padding: 0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    box-sizing: border-box;
}

.menu-button:hover {
    background: #008800;
    transform: translateY(-2px);
}

.menu-button:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.menu-item {
    display: block;
    padding: 14px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e0e0e0;
}

.menu-item:first-child {
    border-radius: 8px 8px 0 0;
}

.menu-item:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.menu-item:hover {
    background: #f5f5f5;
    color: var(--primary-green);
}

.logo {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--text-green);
}

nav.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-gray);
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 4px;
    border-radius: 2px;
}

.nav-link[aria-current="page"] {
    color: var(--primary-green);
    font-weight: 700;
}

.nav-link[aria-current="page"]::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-green);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    padding: 120px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/cupboardlong2.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        rgba(0, 80, 0, 0.85) 0%, 
        rgba(0, 100, 0, 0.7) 30%,
        rgba(0, 122, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 50%;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text {
    color: white;
}

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

/* Contact Page Hero */
.contact-hero {
    padding: 80px 0 40px;
    background-color: var(--white);
    text-align: center;
}

.contact-hero .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-hero h1 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: var(--text-green);
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    margin: 0;
}

/* Content Page Hero (for About, How It Works, Partners, etc.) */
/* Match contact page hero style - white background, dark green text */
.hero:not(:has(.hero-background)) {
    position: relative;
    padding: 80px 0 40px;
    background-color: var(--white);
    text-align: center;
    overflow: visible;
    min-height: auto;
}

.hero:not(:has(.hero-background)) .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Style h1 in content page heroes - match contact page dark green */
.hero:not(:has(.hero-background)) h1 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.3;
    color: var(--text-green);
    margin: 0;
    text-shadow: none;
}

/* Landing page hero h1 stays white */
.hero:has(.hero-background) h1 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.content-section {
    padding: 60px 0;
    background-color: var(--white);
}

.tagline {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 100%;
    margin-bottom: 40px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #009900;
    transform: translateY(-2px);
}

/* Info Section */
.info {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-green);
    margin-bottom: 16px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* Contact Section */
.contact {
    padding: 0 0 80px;
    background-color: var(--white);
}

h2, h3, h4 {
    color: var(--text-green);
}

#contactForm {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-of-type {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 0;
}

.submit-button {
    width: 100%;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 14px;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.submit-button:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.form-status {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--primary-green);
}

.direct-email {
    text-align: center;
    margin-top: 32px;
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.direct-email a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
}

.direct-email a:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Footer */
footer {
    background-color: var(--light-gray);
    padding: 30px 0;
    border-top: 1px solid var(--border-gray);
}

footer p {
    text-align: center;
    font-size: 14px;
    color: var(--dark-gray);
    margin: 4px 0;
}

footer a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #009900;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: 500px;
        padding: 80px 0;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, 
            rgba(0, 122, 0, 0.75) 0%, 
            rgba(0, 122, 0, 0.5) 50%, 
            transparent 100%
        );
    }

    .hero-background {
        background-position: center center;
    }

    .hero h1 {
        font-size: 36px;
    }
    
    /* Content page heroes on mobile - match contact page */
    .hero:not(:has(.hero-background)) {
        padding: 60px 0 32px;
    }
    
    .hero:not(:has(.hero-background)) .container {
        padding: 0 20px;
    }
    
    .hero:not(:has(.hero-background)) h1 {
        font-size: 32px;
    }

    .tagline {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .cta-button {
        font-size: 16px;
        padding: 14px 32px;
    }

    .info {
        padding: 60px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        font-size: 24px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 28px;
    }
    
    /* Content page heroes on small mobile - match contact page */
    .hero:not(:has(.hero-background)) {
        padding: 50px 0 24px;
    }
    
    .hero:not(:has(.hero-background)) .container {
        padding: 0 16px;
    }
    
    .hero:not(:has(.hero-background)) h1 {
        font-size: 28px;
    }

    .tagline {
        font-size: 18px;
    }
}

/* Multi-page styles */

/* Content sections */
.content-section {
    padding: 60px 0;
    background-color: var(--white);
}

.container.narrow {
    max-width: 900px;
    width: 100%;
}

.lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-green);
    font-weight: 600;
    margin-bottom: 24px;
}

/* Values/Benefits Grid */
.values-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.value-card, .benefit-card {
    padding: 24px;
    background-color: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.value-card h3, .benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-green);
}

.value-card p, .benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Partners Benefits Section - Clean B2B Style */
.partners-benefits-section {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 60px 40px;
    margin: 48px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.partners-benefits-section h2 {
    text-align: left;
    margin-bottom: 40px;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--text-green);
}

.partners-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.partners-benefit-item {
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    text-align: left;
}

.partners-benefit-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 174, 0, 0.1);
    border-radius: 50%;
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.partners-benefit-item h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-green);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.partners-benefit-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #0b0b0b;
    margin: 0;
    font-weight: 400;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.team-member {
    text-align: center;
    padding: 20px;
}

.team-member h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.team-member .role {
    font-size: 14px;
    color: var(--dark-gray);
}

.team-member a {
    color: var(--primary-green);
    text-decoration: none;
}

/* Responsive Team Grid */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Steps Grid (How It Works) */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 24px 0;
}

/* Desktop: 3-2 layout */
@media (min-width: 769px) {
    .steps-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }
    
    .step-card:nth-child(1),
    .step-card:nth-child(2),
    .step-card:nth-child(3) {
        grid-column: span 2;
    }
    
    .step-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    
    .step-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

.step-card {
    text-align: center;
    padding: 20px 16px;
    background-color: var(--light-gray);
    border-radius: 12px;
}

.step-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.step-card h2 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Info Boxes */
.info-box {
    background-color: var(--light-gray);
    padding: 32px;
    border-radius: 8px;
    margin: 24px 0;
}

.info-box p {
    margin-bottom: 16px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 16px;
    color: var(--dark-gray);
}

/* SDG Section */
.sdg-section {
    background-color: var(--light-gray);
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 4px solid var(--primary-green);
}

.sdg-section p {
    margin-bottom: 16px;
}

.sdg-section p:last-child {
    margin-bottom: 0;
}

/* Sustainability Details */
.sustainability-details {
    margin: 32px 0;
}

.sustainability-details p {
    margin-bottom: 20px;
    padding-left: 24px;
    position: relative;
}

.sustainability-details p::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

/* Image Placeholder */
.image-placeholder {
    margin: 40px 0;
    text-align: center;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* FAQ Styles */
.faq-group {
    margin: 32px 0;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-green);
    cursor: pointer;
    background-color: var(--light-gray);
    transition: background-color 0.3s ease;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    float: right;
    font-size: 24px;
    color: var(--primary-green);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover {
    background-color: #e8e8e8;
}

.faq-content {
    padding: 20px 24px;
    background-color: var(--white);
}

.faq-content p {
    margin-bottom: 12px;
}

.faq-content ul, .faq-content ol {
    margin-left: 24px;
    margin-bottom: 12px;
}

.faq-content li {
    margin-bottom: 8px;
}

.faq-content a {
    color: var(--primary-green);
    text-decoration: none;
}

.faq-content a:hover {
    text-decoration: underline;
}

/* Roles Section */
.roles-section {
    margin: 32px 0;
}

.role-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-gray);
}

.role-item:last-child {
    border-bottom: none;
}

.role-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.role-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Culture List */
.culture-list {
    list-style: none;
    margin: 24px 0;
}

.culture-list li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

.culture-list strong {
    color: var(--text-green);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 60px 0 0;
    padding: 48px 32px;
    background-color: var(--light-gray);
    border-radius: 12px;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--dark-gray);
}

.cta-section .cta-button {
    margin-top: 8px;
}

.email-large {
    font-size: 24px;
    margin: 24px 0;
}

.email-large a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
}

.email-large a:hover {
    text-decoration: underline;
}

/* Map Placeholder */
.map-placeholder {
    margin-top: 24px;
    padding: 24px;
    background-color: var(--light-gray);
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    font-size: 15px;
    margin: 4px 0;
    color: var(--dark-gray);
}

/* Focus styles for accessibility */
button:focus, 
a:focus, 
input:focus, 
textarea:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Responsive adjustments for multi-page */
@media (max-width: 768px) {
    nav.footer-nav {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .values-grid, .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Partners Benefits Section Responsive - Tablet */
    .partners-benefits-section {
        padding: 48px 32px;
        margin: 40px 0;
    }
    
    .partners-benefits-section h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .partners-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .partners-benefit-item {
        padding: 24px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 32px 20px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .lead {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    nav.footer-nav {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .step-icon {
        font-size: 48px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* Profile page styles */
.profile-section {
    padding: 60px 0;
}

.profile-section-top {
    padding: 30px 0 60px;
}

.profile-content {
    display: grid;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.profile-card h2 {
    color: var(--text-green);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.profile-fields {
    display: grid;
    gap: 24px;
    margin-bottom: 30px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-group label {
    font-weight: 600;
    color: var(--text-green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-display {
    padding: 12px 16px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    min-height: 20px;
    transition: all 0.3s ease;
}

.field-display:empty::before {
    content: "Not set";
    color: #6c757d;
    font-style: italic;
}

.edit-button {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
}

.edit-button:hover {
    background: #008800;
    transform: translateY(-2px);
}

.edit-button:active {
    transform: translateY(0);
}

/* Order History Styles */
.order-history-container {
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
}

.order-history {
    padding: 20px;
}

.order-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-green);
}

.order-item:last-child {
    margin-bottom: 0;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.order-info h3 {
    color: var(--text-green);
    margin: 0 0 4px 0;
    font-size: 1.1rem;
}

.order-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.order-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.order-status[data-field="status"]:empty::before {
    content: "Completed";
    background: #d4edda;
    color: #155724;
}

.order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-row .label {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
}

.detail-row .value {
    color: #333;
    font-weight: 500;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-state p {
    font-size: 1.1rem;
    margin: 0;
}

/* Order Statistics */
.order-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Order History Styles */
.order-history-container {
    margin-top: 20px;
}

.order-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    border-left: 4px solid var(--primary-green);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.order-info h3.item-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 4px 0;
}

.order-date {
    font-size: 0.875rem;
    color: #6c757d;
}

.order-status-badge {
    background: #d4edda;
    color: #155724;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.order-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.detail-row {
    display: flex;
    flex-direction: column;
}

.detail-row .label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail-row .value {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.order-cost {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1rem;
}

.see-more-button {
    background: var(--primary-green);
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lexend', sans-serif;
}

.see-more-button:hover {
    background: #008800;
    transform: translateY(-2px);
}

.see-more-button:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

/* Responsive adjustments for profile page */
@media (max-width: 768px) {
    .profile-card {
        padding: 24px;
    }
    
    .profile-card h2 {
        font-size: 1.5rem;
    }
    
    .order-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .order-details {
        grid-template-columns: 1fr;
    }
    
    .order-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .profile-section {
        padding: 40px 0;
    }
    
    .profile-card {
        padding: 20px;
        margin: 0 -20px;
        border-radius: 0;
    }
}

/* Contact Page Layout */
.contact .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.contact-form-section {
    background-color: #f9f9f9;
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 40px;
}

.contact-social-section {
    background-color: #f9f9f9;
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 32px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--border-gray);
    background-color: var(--white);
}

.social-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.social-link span {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-gray);
}

.social-link:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 32px;
    }
    
    .contact-hero .container {
        padding: 0 20px;
    }
    
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact {
        padding: 0 0 60px;
    }
    
    .contact .container {
        padding: 0 20px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form-section {
        padding: 32px 24px;
    }
    
    .contact-social-section {
        padding: 24px;
    }
    
    .social-icons {
        flex-direction: row;
        gap: 12px;
    }
    
    .social-link {
        flex: 1;
        flex-direction: column;
        padding: 20px 16px;
        text-align: center;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 8px;
    }
    
    .social-link span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 50px 0 24px;
    }
    
    .contact-hero .container {
        padding: 0 16px;
    }
    
    .contact-hero h1 {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 15px;
    }
    
    .contact .container {
        padding: 0 16px;
    }
    
    .contact-form-section {
        padding: 24px 20px;
    }
    
    .contact-social-section {
        padding: 20px;
    }
    
    .social-icons {
        flex-direction: column;
    }
    
    .social-link {
        flex-direction: row;
        text-align: left;
    }
    
    .social-icon {
        margin: 0;
    }
}

/* Admin Console Styles */
.admin-console-hero {
    padding: 60px 0 40px;
    background-color: var(--white);
    border-bottom: 2px solid var(--primary-green);
}

.admin-console-hero h1 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: var(--text-green);
    margin-bottom: 8px;
}

.admin-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.admin-analytics {
    padding: 60px 0;
    background-color: var(--white);
}

.loading-spinner {
    text-align: center;
    padding: 80px 20px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    font-size: 16px;
    color: #666;
}

.access-denied {
    padding: 60px 20px;
}

.error-box {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    text-align: center;
}

.error-box h2 {
    color: #856404;
    margin-bottom: 16px;
}

.error-box p {
    color: #856404;
    margin-bottom: 24px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.metric-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(0, 174, 0, 0.1);
    transform: translateY(-2px);
}

.metric-card.highlight {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border-color: var(--primary-green);
}

.metric-icon {
    font-size: 42px;
    line-height: 1;
}

.metric-info {
    flex: 1;
}

.metric-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 400;
}

.metric-value {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-green);
    line-height: 1;
}

.distribution-section {
    margin-top: 40px;
}

.distribution-section h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--text-green);
    margin-bottom: 24px;
}

.distribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.distribution-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.distribution-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(0, 174, 0, 0.1);
}

.distribution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-gray);
}

.distribution-item-name {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-gray);
    margin: 0;
}

.distribution-cost {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-green);
}

.distribution-details {
    display: flex;
    gap: 24px;
}

.distribution-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 13px;
    color: #666;
}

.stat-value {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-gray);
}

.loading-text {
    text-align: center;
    color: #666;
    padding: 40px;
}

.no-data-text {
    text-align: center;
    color: #666;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 8px;
    grid-column: 1 / -1;
}

/* Responsive Admin Console */
@media (max-width: 768px) {
    .admin-console-hero {
        padding: 40px 0 30px;
    }
    
    .admin-console-hero h1 {
        font-size: 32px;
    }
    
    .admin-subtitle {
        font-size: 16px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .metric-card {
        padding: 20px;
        gap: 16px;
    }
    
    .metric-icon {
        font-size: 36px;
    }
    
    .metric-value {
        font-size: 28px;
    }
    
    .distribution-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .distribution-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .admin-console-hero h1 {
        font-size: 28px;
    }
    
    .admin-subtitle {
        font-size: 14px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-card {
        padding: 16px;
    }
    
    .metric-icon {
        font-size: 32px;
    }
    
    .metric-label {
        font-size: 13px;
    }
    
    .metric-value {
        font-size: 24px;
    }
    
    .distribution-details {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================
   NEW LANDING PAGE SECTIONS
   ============================================ */

/* Section Titles */
.section-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--text-green);
    text-align: center;
    margin-bottom: 60px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--white);
}

.how-it-works .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works .step-card {
    background: var(--white);
    border: 2px solid rgba(0, 174, 0, 0.2);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.how-it-works .step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), #00cc00);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.how-it-works .step-card:hover::before {
    opacity: 1;
}

.how-it-works .step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 174, 0, 0.2);
    border-color: var(--primary-green);
}

.how-it-works .step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1;
}

.how-it-works .step-card h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-green);
    margin-bottom: 16px;
}

.how-it-works .step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin: 0;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 174, 0, 0.15);
}

.benefit-icon {
    font-size: 28px;
    color: var(--primary-green);
    font-weight: 700;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 174, 0, 0.1);
    border-radius: 50%;
}

.benefit-item p {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

/* Audiences Section */
.audiences {
    padding: 100px 0;
    background-color: var(--white);
}

.audiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    background: #f9f9f9;
    border: 2px solid rgba(0, 174, 0, 0.15);
    border-radius: 16px;
    padding: 48px 40px;
    transition: all 0.3s ease;
}

.audience-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 24px rgba(0, 174, 0, 0.15);
    transform: translateY(-4px);
}

.audience-card h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--text-green);
    margin-bottom: 20px;
}

.audience-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin: 0;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.stats .stat-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stats .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 174, 0, 0.2);
}

.stats .stat-value-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
    margin-bottom: 12px;
}

.stats .stat-number {
    font-family: 'Lexend', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    display: inline-block;
}

.stats .stat-suffix {
    font-family: 'Lexend', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    display: inline-block;
}

.stats .stat-text {
    font-family: 'Lexend', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 12px;
}

.stats .stat-label {
    font-size: 18px;
    color: var(--dark-gray);
    font-weight: 400;
    margin-top: 16px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #00cc00 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/cupboardlong2.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.final-cta p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.final-cta .cta-button {
    background-color: var(--white);
    color: var(--primary-green);
    padding: 18px 48px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.final-cta .cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

/* Pulsing Animation for CTA Button */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 24px rgba(255, 255, 255, 0.4), 0 0 0 8px rgba(255, 255, 255, 0.1);
    }
}

.final-cta .cta-button.pulse {
    animation: pulse 3s ease-in-out infinite;
}

/* Floating Animation for Step Cards */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.how-it-works .step-card {
    animation: float 4s ease-in-out infinite;
}

.how-it-works .step-card:nth-child(2) {
    animation-delay: 0.5s;
}

.how-it-works .step-card:nth-child(3) {
    animation-delay: 1s;
}

/* Scroll Reveal Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Animation Enhancements */
.hero-text {
    color: white;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

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

.hero-background {
    animation: backgroundPan 20s ease-in-out infinite;
}

@keyframes backgroundPan {
    0%, 100% {
        transform: scale(1) translateX(0);
    }
    50% {
        transform: scale(1.05) translateX(-2%);
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-background {
        animation: none;
        transform: none;
    }
    
    .hero-text {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .how-it-works .step-card {
        animation: none;
    }
    
    .final-cta .cta-button.pulse {
        animation: none;
    }
    
    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .how-it-works .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Partners Benefits Section - Large Tablet */
    .partners-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .partners-benefits-section {
        padding: 52px 36px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .audiences-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 48px;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 80px 0;
    }
    
    .benefits {
        padding: 60px 0;
    }
    
    .audiences {
        padding: 80px 0;
    }
    
    .stats {
        padding: 80px 0;
    }
    
    .final-cta {
        padding: 80px 0;
    }
    
    .how-it-works .step-card {
        padding: 32px 24px;
    }
    
    .how-it-works .step-number {
        font-size: 40px;
    }
    
    .how-it-works .step-card h3 {
        font-size: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .audience-card {
        padding: 32px 24px;
    }
    
    .audience-card h2 {
        font-size: 24px;
    }
    
    .audience-card p {
        font-size: 16px;
    }
    
    .stats .stat-number,
    .stats .stat-suffix {
        font-size: 48px;
    }
    
    .stats .stat-value-wrapper {
        margin-bottom: 8px;
    }
    
    .stats .stat-text {
        font-size: 36px;
    }
    
    .final-cta h2 {
        font-size: 32px;
    }
    
    .final-cta p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .how-it-works,
    .benefits,
    .audiences,
    .stats,
    .final-cta {
        padding: 60px 0;
    }
    
    .how-it-works .step-card {
        padding: 24px 20px;
    }
    
    .how-it-works .step-number {
        font-size: 36px;
    }
    
    .how-it-works .step-card h3 {
        font-size: 18px;
    }
    
    .stats .stat-number,
    .stats .stat-suffix {
        font-size: 40px;
    }
    
    .stats .stat-value-wrapper {
        margin-bottom: 8px;
    }
    
    .stats .stat-text {
        font-size: 32px;
    }
    
    .final-cta h2 {
        font-size: 28px;
    }
    
    .final-cta p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    /* Partners Benefits Section - Mobile */
    .partners-benefits-section {
        padding: 40px 20px;
        margin: 32px 0;
    }
    
    .partners-benefits-section h2 {
        font-size: 24px;
        margin-bottom: 28px;
        text-align: center;
    }
    
    .partners-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partners-benefit-item {
        max-width: 100%;
        padding: 20px 18px;
        text-align: center;
    }
    
    .partners-benefit-icon {
        margin: 0 auto 16px;
    }
}
