 /* ==========================================================================
   Main Navigation - Transparent on Hero, Solid on Scroll
   ========================================================================== */
 
 *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html {
            font-size: 10px;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 1.6rem;
            line-height: 1.6;
            color: #333;
            background: #123524;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

/* ==========================================================================
   Main Navigation - Transparent on Hero, Solid on Scroll
   ========================================================================== */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    border-bottom: 0px solid rgba(246, 239, 215, 0.1);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    background: rgba(18, 53, 36, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(246, 239, 215, 0.1);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.nav-logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #F6EFD7;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #F6EFD7;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    background: rgba(246, 239, 215, 0.15);
    color: #F6EFD7;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(18, 53, 36, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 239, 215, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 1rem 1.5rem;
    color: rgba(246, 239, 215, 0.9);
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: rgba(246, 239, 215, 0.1);
    color: #F6EFD7;
    border-left-color: #A58623;
    padding-left: 2rem;
}

/* CTA Button in Nav */
.nav-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2E7D32;
    color: #F6EFD7;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-left: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-cta-btn:hover {
    background: #A58623;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #F6EFD7;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Navigation - Tablet and below */
@media (max-width: 1024px) {
    .nav-wrapper {
        padding: 0 1.5rem;
        height: 60px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(18, 53, 36, 0.98);
		padding-top: 60px;
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 2rem 0;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-item {
        border-bottom: 1px solid rgba(246, 239, 215, 0.1);
    }
    
    .nav-link {
        padding: 1.5rem 2rem;
        font-size: 1.6rem;
        text-shadow: none;
    }
    
    /* Mobile Accordion Dropdowns */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: none;
        padding: 0;
    }
    
    .has-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .dropdown-item {
        padding: 1.2rem 2rem 1.2rem 3rem;
        font-size: 1.4rem;
        border-left: none;
    }
    
    .dropdown-item:hover {
        padding-left: 3.5rem;
    }
    
    .nav-cta-btn {
        display: block;
        text-align: center;
        margin: 2rem 2rem 0;
        padding: 1.5rem 2rem;
        font-size: 1.6rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 0 1rem;
        height: 55px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .nav-menu {
        top: 0px;
        height: 100vh;
		padding-top: 55px;
    }
    
    .hamburger-line {
        width: 24px;
    }
}

/* ==========================================================================
           Smooth Scrolling & Mobile Scrolling
 ========================================================================== */

/* Smooth Scroll for anchor links */
.smooth-scroll {
    scroll-behavior: smooth;
}
        
        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 4rem;
            left: 50%;
            margin-left: -50px;
            width: 100px;
            z-index: 4;
            cursor: pointer;
            opacity: 0;
            animation: fadeInUp 1s ease-out 2s forwards;
            text-align: center;
        }
        
        .scroll-indicator-capsule {
            width: 30px;
            height: 50px;
            border: 2px solid rgba(246, 239, 215, 0.6);
            border-radius: 15px;
            position: relative;
            margin: 0 auto 0.5rem auto;
        }
        
        .scroll-indicator-dot {
            width: 6px;
            height: 6px;
            background: #F6EFD7;
            border-radius: 50%;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollDot 2s infinite ease-in-out;
        }
        
        @keyframes scrollDot {
            0%, 20% {
                top: 8px;
                opacity: 1;
            }
            100% {
                top: 32px;
                opacity: 0;
            }
        }
        
        .scroll-indicator-text {
            color: rgba(246, 239, 215, 0.8);
            font-size: 1.1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            position: relative;
            top: -0.5rem;
            white-space: nowrap;
        }
        
        /* Mobile Navigation Override */
        @media (max-width: 767px) {
            .nav-dots {
                gap: 0.6rem;
            }
            
            .nav-dot {
                width: 8px;
                height: 8px;
            }
            
            .nav-container {
                top: 1.5rem;
                padding: 0.8rem 1.2rem;
                max-width: 95vw;
            }
            
            .nav-label {
                font-size: 1rem;
                padding: 0.3rem 0.6rem;
                letter-spacing: 0.3px;
            }
            
            .hero-static-headline {
                font-size: clamp(1.4rem, 4vw, 1.8rem);
                margin-bottom: 0.8rem;
            }
            
            .hero-title {
                font-size: clamp(2rem, 6vw, 3.2rem);
                margin-bottom: 1.5rem;
            }
            
            .hero-cta-btn {
                padding: 1.2rem 2.5rem;
                font-size: 1.6rem;
                margin-top: 0.8rem;
            }
        }
		
		@media (max-width: 480px) {
            .nav-label {
                font-size: 0.9rem;
                padding: 0.3rem 0.5rem;
            }
            
            .nav-dots {
                gap: 0.5rem;
            }
        }

/* ==========================================================================
           Non-Critical CSS - Below the fold styles
 ========================================================================== */
        
        /* Container and Layout */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .content-section {
            padding: 8rem 0;
            background: #123524;
            position: relative;
            color: #F6EFD7;
        }
        
/* ==========================================================================
   Problem Section - With Prominent Statistic Callout
   ========================================================================== */

.problem-section {
    background: linear-gradient(135deg, #0d2419 0%, #123524 50%, #0d2419 100%);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 53, 36, 0.75);
    z-index: 1;
}

.problem-section .container {
    position: relative;
    z-index: 2;
}

/* Statistic Callout - Visually Prominent */
.stat-callout {
    background: linear-gradient(135deg, rgba(165, 134, 35, 0.15) 0%, rgba(46, 125, 50, 0.15) 100%);
    border: 2px solid rgba(165, 134, 35, 0.4);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    margin: 2.5rem 0;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A58623 0%, #2E7D32 100%);
}

.stat-number {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 800;
    color: #F6EFD7;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.stat-label {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    color: rgba(246, 239, 215, 0.95);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.stat-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: #A58623;
    font-weight: 700;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(165, 134, 35, 0.3);
    letter-spacing: 0.5px;
}

.stat-icon {
    width: 24px;
    height: 24px;
    color: #A58623;
}

/* Text Block Styling */
.content-text .text-block {
    margin-bottom: 3rem;
}

.content-text h3 {
    font-size: clamp(2rem, 3vw, 2.4rem);
    color: #F6EFD7;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-text p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: rgba(246, 239, 215, 0.9);
    margin-bottom: 1.5rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-text strong {
    color: #F6EFD7;
    font-weight: 700;
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 1199px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .content-media {
        order: -1; /* Image appears above text on tablet */
    }
}

@media (max-width: 767px) {
    .stat-callout {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .stat-number {
        font-size: clamp(3rem, 10vw, 4.5rem);
    }
    
    .stat-label {
        font-size: clamp(1.4rem, 3vw, 1.6rem);
    }
    
    .stat-comparison {
        font-size: clamp(1.2rem, 2.5vw, 1.4rem);
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .stat-icon {
        width: 20px;
        height: 20px;
    }
    
    .content-text .text-block {
        margin-bottom: 2rem;
    }
    
    .content-text p {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .stat-callout {
        padding: 1.5rem 1rem;
    }
    
    .stat-comparison {
        padding-top: 1rem;
    }
}

/* ==========================================================================
   How It Works Section - Styled Like Explore Further with Step Numbers
   ========================================================================== */

.how-it-works-section {
    background: linear-gradient(135deg, #0d2419 0%, #123524 50%, #0d2419 100%);
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(165, 134, 35, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.how-it-works-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.how-it-works-section .container {
    position: relative;
    z-index: 2;
}

/* Steps Container - Horizontal Flow */
.steps-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    margin: 4rem 0;
    flex-wrap: nowrap;
	padding-top: 20px;
}

/* Individual Step Card - Styled Like Explore Cards */
.step-card {
    flex: 1;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(246, 239, 215, 0.15);
    border-radius: 16px;
    padding: 3rem 2rem 2.5rem 2rem;
    text-decoration: none;
    color: #F6EFD7;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2E7D32 0%, #A58623 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(165, 134, 35, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.step-card:hover::before {
    transform: scaleX(1);
}

/* Step Number Badge - Positioned at Top */
.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #A58623 0%, #2E7D32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #F6EFD7;
    border: 3px solid #0d2419;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Step Icon - Matches Explore Section */
.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #A58623;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    color: #F6EFD7;
    transform: scale(1.1);
}

.step-icon svg {
    width: 48px;
    height: 48px;
}

/* Step Content */
.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #F6EFD7;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.step-description {
    font-size: 1.4rem;
    line-height: 1.5;
    color: rgba(246, 239, 215, 0.85);
    flex-grow: 1;
}

/* Arrow Connectors - Kept from Original */
.step-arrow {
    flex: 0 0 auto;
    color: rgba(165, 134, 35, 0.4);
    display: flex;
    align-items: center;
    align-self: center;
}

.step-arrow svg {
    width: 40px;
    height: 24px;
}

/* CTA Section */
.steps-cta {
    text-align: center;
    margin-top: 4rem;
}

.steps-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: #2E7D32;
    color: #F6EFD7;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.steps-cta-btn:hover {
    background: #A58623;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(165, 134, 35, 0.5);
}

.steps-cta-btn .cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.steps-cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

/* Tablet Responsive - 2 columns */
@media (max-width: 1199px) {
	
	.how-it-works-section {
        padding-top: 8rem; /* Adjust for mobile - slightly more than default 6rem */
    }
	
    .steps-container {
        flex-wrap: wrap;
        gap: 2rem;
		padding-top: 20px;
    }
    
    .step-card {
        flex: 0 0 calc(50% - 1rem);
        max-width: none;
    }
    
    .step-arrow {
        display: none;
    }
}

/* Mobile Responsive - Vertical Stack */
@media (max-width: 767px) {
	
	.how-it-works-section {
        padding-top: 7rem; /* Slightly less for very small screens */
    }
	
    .steps-container {
        flex-direction: column;
        gap: 3rem;
        margin: 3rem 0;
		padding-top: 20px;
    }
    
    .step-card {
        flex: 1;
        max-width: 100%;
        padding: 2.5rem 2rem;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1.4rem;
        top: -12px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }
    
    .step-icon svg {
        width: 42px;
        height: 42px;
    }
    
    .step-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .step-description {
        font-size: 1.3rem;
    }
    
    .steps-cta {
        margin-top: 3rem;
    }
    
    .steps-cta-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.6rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .step-card {
        padding: 2.2rem 1.8rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon svg {
        width: 36px;
        height: 36px;
    }
}
        
        /* Calculator Section */
        .calculator-section {
            background: linear-gradient(135deg, #123524 0%, #1B5E20 100%);
        }
        
        /* Desktop/Tablet Calculator Layout - Side by Side */
        @media (min-width: 768px) {
            .calculator-layout {
                display: flex;
                gap: 5rem;
                align-items: flex-start;
            }
            
            .calculator-inputs-column {
                flex: 1;
                min-width: 400px;
            }
            
            .calculator-results {
                flex: 1;
                min-width: 400px;
            }
            
        /* Desktop/Tablet Calculator Layout - Side by Side */
        @media (min-width: 768px) {
            .calculator-layout {
                display: flex;
                gap: 5rem;
                align-items: flex-start;
            }
            
            .calculator-inputs-column {
                flex: 1;
                min-width: 400px;
            }
            
            .calculator-results {
                flex: 1;
                min-width: 400px;
            }
            
            .calculator-inputs {
                margin-bottom: 0;
            }
            
            .input-group {
                margin-bottom: 0.1rem;
                position: relative;
                overflow: hidden; /* Clearfix for floated elements */
            }
            
            .input-group label {
                display: block;
                color: #F6EFD7;
                font-size: 1.6rem;
                margin-bottom: 0.7rem;
                font-weight: 600;
                clear: both;
            }
            
            .input-group .slider {
                margin-bottom: 0.2rem;
                clear: both;
            }
            
            .slider {
                width: 100%;
                height: 6px;
                border-radius: 3px;
                background: rgba(255, 255, 255, 0.2);
                outline: none;
                -webkit-appearance: none;
                appearance: none;
            }
            
            .slider::-webkit-slider-thumb {
                -webkit-appearance: none;
                appearance: none;
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background: #F6EFD7;
                cursor: pointer;
                transition: all 0.3s ease;
                border: none;
                margin-top: -7px;
            }
            
            .slider::-webkit-slider-thumb:hover {
                transform: scale(1.2);
            }
            
            .slider::-moz-range-thumb {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background: #F6EFD7;
                cursor: pointer;
                transition: all 0.3s ease;
                border: none;
                margin-top: -7px;
            }
            
            .slider::-moz-range-thumb:hover {
                transform: scale(1.2);
            }
            
            .slider::-moz-range-track {
                width: 100%;
                height: 6px;
                cursor: pointer;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 3px;
                border: none;
            }
            
            .slider::-webkit-slider-runnable-track {
                width: 100%;
                height: 6px;
                cursor: pointer;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 3px;
                border: none;
            }
            
            .value-display {
    			display: block;
   				text-align: right;
    			color: rgba(255, 255, 255, 0.8);
    			font-size: 1.4rem;
    			margin-top: 0.5rem;
    			font-weight: 400;
    			width: 100%;
			}
            
            /* Desktop Forest Visualization */
            .forest-visualization {
                position: relative;
                height: 175px;
                background: linear-gradient(to top, rgba(139, 69, 19, 0.2) 0%, transparent 40%);
                border-radius: 10px;
                overflow: hidden;
            }
            
            .tree {
                position: absolute;
                bottom: 0;
                width: auto;
                height: 60px;
                transition: height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
                background: none;
                opacity: 0;
                transform: translateX(-50%);
                transform-origin: bottom center;
            }
            
            .tree:nth-child(1) { left: 18%; }
            .tree:nth-child(6) { left: 30%; }
            .tree:nth-child(2) { left: 42%; }
            .tree:nth-child(5) { left: 54%; }
            .tree:nth-child(7) { left: 66%; }
            .tree:nth-child(4) { left: 78%; }
            .tree:nth-child(3) { left: 90%; }
            
            .tree.visible {
                opacity: 1;
            }
            
            .tree img {
                width: auto;
                height: 100%;
                display: block;
                object-fit: contain;
				object-position: center bottom;
            }
        }
		}
        /* Solution Message - Between Results and Visualization */
.calculator-solution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    margin: 2rem 0 1.5rem 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15) 0%, rgba(165, 134, 35, 0.15) 100%);
    border: 1px solid rgba(165, 134, 35, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.solution-icon {
    width: 24px;
    height: 24px;
    color: #2E7D32;
    flex-shrink: 0;
}

.solution-text {
    font-size: 1.5rem;
    color: rgba(246, 239, 215, 0.95);
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.solution-text strong {
    color: #F6EFD7;
    font-weight: 700;
}

/* Calculator CTA Button - Centered to Full Container Width */
.calculator-cta {
    margin-top: 3rem;
    text-align: center;
    width: 100%;
}

.calculator-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 2.8rem;
    background: #2E7D32;
    color: #F6EFD7;
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.calculator-cta-btn:hover {
    background: #A58623;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(165, 134, 35, 0.5);
}

.calculator-cta-btn .cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.calculator-cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

/* Mobile Responsive Updates */
@media (max-width: 767px) {
    .calculator-solution {
        flex-direction: column;
        padding: 1.2rem 1.5rem;
        margin: 1.5rem 0 1rem 0;
        gap: 0.8rem;
    }
    
    .solution-icon {
        width: 20px;
        height: 20px;
    }
    
    .solution-text {
        font-size: 1.3rem;
    }
    
    .calculator-cta {
        margin-top: 2rem;
    }
    
    .calculator-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .calculator-solution {
        padding: 1rem 1.2rem;
    }
    
    .solution-text {
        font-size: 1.2rem;
    }
    
    .calculator-cta {
        margin-top: 1.5rem;
    }
    
    .calculator-cta-btn {
        padding: 1.1rem 1.8rem;
        font-size: 1.5rem;
    }
}
        
        /* Video Section */
        .video-section {
            background-image: url('../images/technology-background.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .video-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(18, 53, 36, 0.6);
            z-index: 1;
        }
        
        .video-section .container {
            position: relative;
            z-index: 2;
        }
        
        /* Credits Section */
        .credits-section {
            background: linear-gradient(135deg, #123524 0%, #1B5E20 100%);
        }
        
        /* Features Section */
        .features-section {
            background-image: url('../images/forest-background.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        
        .features-section .container {
            position: relative;
            z-index: 2;
        }
		
		/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(165, 134, 35, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 2.2rem;
    color: #F6EFD7;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.feature-description {
    font-size: 1.5rem;
    line-height: 1.6;
    color: rgba(246, 239, 215, 0.9);
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Proof Points */
.feature-proof-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-proof {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(46, 125, 50, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(165, 134, 35, 0.3);
    transition: all 0.3s ease;
}

.feature-proof:hover {
    background: rgba(46, 125, 50, 0.25);
    border-color: rgba(165, 134, 35, 0.5);
}

.proof-icon {
    width: 16px;
    height: 16px;
    color: #A58623;
    flex-shrink: 0;
}

.feature-proof span {
    font-size: 1.3rem;
    color: rgba(246, 239, 215, 0.95);
    font-weight: 500;
    text-align: left;
    line-height: 1.4;
}

/* Tablet Responsive */
@media (max-width: 1199px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    
    .feature-card {
        padding: 2.5rem 1.8rem;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        margin-bottom: 1.5rem;
    }
    
    .feature-icon img {
        width: 70px;
        height: 70px;
    }
    
    .feature-card h3 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-description {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-proof {
        padding: 0.7rem 1rem;
        gap: 0.6rem;
    }
    
    .proof-icon {
        width: 14px;
        height: 14px;
    }
    
    .feature-proof span {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 1.8rem 1.2rem;
    }
    
    .feature-icon img {
        width: 60px;
        height: 60px;
    }
    
    .feature-card h3 {
        font-size: 1.8rem;
    }
    
    .feature-description {
        font-size: 1.3rem;
    }
    
    .feature-proof {
        padding: 0.6rem 0.8rem;
    }
    
    .feature-proof span {
        font-size: 1.1rem;
    }
}
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-size: clamp(2.4rem, 4vw, 4rem);
            color: #F6EFD7;
            margin-bottom: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .section-subtitle {
            font-size: clamp(1.4rem, 2vw, 1.8rem);
            color: rgba(246, 239, 215, 0.9);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Content Layout */
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .content-text .text-block {
            margin-bottom: 3rem;
        }
        
        .content-text h3 {
            font-size: 2.4rem;
            color: #F6EFD7;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .content-text p {
            font-size: 1.6rem;
            line-height: 1.7;
            color: rgba(246, 239, 215, 0.9);
            margin-bottom: 1.5rem;
        }
        
        .content-media img {
            width: 100%;
            height: auto;
            border-radius: 12px;
        }
        
        /* Calculator Styles */
        .calculator-container {
            max-width: 1400px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .calculator-presets {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .preset-btn {
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #F6EFD7;
            font-size: 1.4rem;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .preset-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .preset-btn.active {
            background: #F6EFD7;
            color: #123524;
            border-color: #F6EFD7;
        }
        
        .calculator-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: flex-start;
        }
        
        .input-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        
        .input-group {
            display: flex;
            flex-direction: column;
        }
        
        .input-group label {
            font-size: 1.5rem;
            color: #F6EFD7;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }
        
        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }
		
		/* Slider Styles for Desktop/Tablet */
        .calculator-slider {
            flex: 1;
            height: 6px;
            background: rgba(246, 239, 215, 0.2);
            border-radius: 3px;
            outline: none;
            -webkit-appearance: none;
        }
        
        .calculator-slider::-webkit-slider-thumb {
            appearance: none;
            width: 20px;
            height: 20px;
            background: #F6EFD7;
            border-radius: 50%;
            cursor: pointer;
        }
        
        .calculator-slider::-moz-range-thumb {
            width: 20px;
            height: 20px;
            background: #F6EFD7;
            border-radius: 50%;
            cursor: pointer;
            border: none;
        }
        
        /* Number Display for Desktop/Tablet */
        .calculator-display {
            width: 80px;
            background: rgba(246, 239, 215, 0.1);
            border: 1px solid rgba(246, 239, 215, 0.3);
            border-radius: 5px;
            padding: 0.5rem;
            color: #F6EFD7;
            text-align: center;
            font-weight: 600;
        }
        
        /* Number Input for Mobile */
        
        .calculator-input {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            font-size: 1.4rem;
            text-align: center;
            transition: border-color 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            color: #F6EFD7;
        }
        
        .calculator-input:focus {
            outline: none;
            border-color: #F6EFD7;
            box-shadow: 0 0 0 3px rgba(246, 239, 215, 0.1);
        }
        
        .input-unit {
            position: absolute;
            right: 1rem;
            font-size: 1.2rem;
            color: rgba(246, 239, 215, 0.8);
            pointer-events: none;
        }
        
        /* Results Display - Side by Side Layout for All Screen Sizes */
.results-display {
    background: rgba(246, 239, 215, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(246, 239, 215, 0.2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

/* Result Items - Side by Side on All Screens */
.result-item {
    flex: 0 0 48%;
    margin-bottom: 1rem;
    text-align: center;
}

.result-label {
    display: block;
    font-size: 1.2rem;
    color: rgba(246, 239, 215, 0.7);
    margin-bottom: 0.5rem;
}

.result-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #F6EFD7;
}

/* Comparison Text - Full Width Below */
.result-comparison {
    flex: 0 0 100%;
    font-size: 1.4rem;
    color: rgba(246, 239, 215, 0.8);
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
}

/* Tablet and smaller screens - maintain same layout */
@media (max-width: 1199px) {
    .results-display {
        padding: 2rem;
        gap: 0.5rem;
    }
    
    .result-item {
        flex: 0 0 48%;
    }
    
    .result-comparison {
        margin-top: 0.5rem;
    }
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
    .results-display {
        padding: 1.5rem;
        gap: 0.5rem;
    }
    
    .result-item {
        flex: 0 0 48%;
    }
    
    .result-value {
        font-size: 2.2rem;
        font-weight: 700;
        color: #F6EFD7;
    }
    
    .result-label {
        font-size: 1.1rem;
        color: rgba(246, 239, 215, 0.7);
        margin-bottom: 0.3rem;
    }
    
    .result-comparison {
        font-size: 1.2rem;
        margin-top: 0.3rem;
    }
}
	
		/* Tablet and smaller screens - side by side results */
@media (max-width: 1199px) {
    .results-display {
        background: rgba(246, 239, 215, 0.1);
        padding: 2rem;
        border-radius: 12px;
        text-align: center;
        margin-bottom: 1rem;
        border: 1px solid rgba(246, 239, 215, 0.2);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    /* First two result items side by side */
    .result-item {
        flex: 0 0 48%;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    /* Comparison text takes full width below */
    .result-comparison {
        flex: 0 0 100%;
        font-size: 1.4rem;
        color: rgba(246, 239, 215, 0.8);
        font-style: italic;
        margin-top: 0.5rem;
        text-align: center;
    }
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
    .results-display {
        padding: 1.5rem;
        gap: 0.5rem;
    }
    
    .result-item {
        flex: 0 0 48%;
    }
    
    .result-value {
        font-size: 2.2rem;
        font-weight: 700;
        color: #F6EFD7;
    }
    
    .result-label {
        font-size: 1.1rem;
        color: rgba(246, 239, 215, 0.7);
        margin-bottom: 0.3rem;
    }
    
    .result-comparison {
        font-size: 1.2rem;
        margin-top: 0.3rem;
    }
}
        
        /* Results display - shared across desktop and mobile */
        @media (max-width: 767px) {
            .forest-visualization {
                position: relative;
                height: 150px;
                background: linear-gradient(to top, rgba(139, 69, 19, 0.1) 0%, transparent 40%);
                border-radius: 12px;
                display: flex;
                align-items: flex-end;
                justify-content: space-around;
                padding: 1rem;
            }
            
            .tree {
                width: 65px;
                height: 130px;
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center bottom;
                opacity: 0;
                transform: scale(0.5);
                transition: all 0.5s ease;
                position: relative;
            }
            
            .tree:nth-child(1) { left: auto; }
            .tree:nth-child(2) { left: auto; }
            .tree:nth-child(3) { left: auto; }
            .tree:nth-child(4) { left: auto; }
            .tree:nth-child(5) { left: auto; }
            .tree:nth-child(6) { left: auto; }
            .tree:nth-child(7) { left: auto; }
            .tree:nth-child(8) { left: auto; }
            
            .tree[data-tree-index="1"] {
                background-image: url('../images/tree1.png');
            }
            
            .tree[data-tree-index="2"] {
                background-image: url('../images/tree2.png');
            }
            
            .tree[data-tree-index="3"] {
                background-image: url('../images/tree3.png');
            }
            
            .tree[data-tree-index="4"] {
                background-image: url('../images/tree4.png');
            }
            
            .tree[data-tree-index="5"] {
                background-image: url('../images/tree5.png');
            }
            
            .tree[data-tree-index="6"] {
                background-image: url('../images/tree6.png');
            }
            
            .tree[data-tree-index="7"] {
                background-image: url('../images/tree7.png');
            }
            
            .tree[data-tree-index="8"] {
                background-image: url('../images/tree8.png');
            }
            
            .tree.visible {
                opacity: 1;
                transform: scale(1.5);
            }
            
            .tree img {
                display: none;
            }
        }
        
		/* Experience Introduction Text */
		.experience-intro {
   			max-width: 800px;
    		margin: 0 auto 3rem;
    		text-align: center;
		}

		.experience-intro p {
    		font-size: 1.7rem;
    		line-height: 1.7;
    		color: rgba(246, 239, 215, 0.95);
    		font-weight: 400;
		}
		
        /* Video Section */
        .experience-video-container {
    		position: relative;
    		max-width: 900px;
    		margin: 0 auto;
    		border-radius: 12px;
    		overflow: hidden;
    		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
			aspect-ratio: 16 / 9;
		}
		
		/* Fallback for older browsers that don't support aspect-ratio */
		@supports not (aspect-ratio: 16 / 9) {
    		.experience-video-container {
        	padding-bottom: 56.25%; /* 16:9 aspect ratio */
    	}
    
    	.experience-video-container .experience-video,
    	.experience-video-container .video-play-btn {
        	position: absolute;
        	top: 0;
        	left: 0;
    	}
		}
        
        .experience-video {
    		width: 100%;
    		height: 100%;
    		display: block;
    		object-fit: cover;
		}
		
		/* Ensure poster image fills container */
.experience-video[poster] {
    object-fit: cover;
}
        
        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: rgba(18, 53, 36, 0.7);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .video-play-btn:hover {
            background: rgba(164, 134, 35, 0.5);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .play-icon {
            position: relative;
            z-index: 3;
        }
        
        .play-triangle {
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 15px 0 15px 25px;
            border-color: transparent transparent transparent #F6EFD7;
            transform: translateX(2px);
        }
        
        .play-ripple {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(246, 239, 215, 0.5);
            border-radius: 50%;
            animation: ripple 2s infinite ease-out;
        }
        
        .play-ripple.delayed {
            animation-delay: 1s;
        }
        
        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        
        /* Loading spinner for progressive video loading */
        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid rgba(246, 239, 215, 0.3);
            border-top: 4px solid #F6EFD7;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
		
		/* Video Caption */
.experience-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
    padding: 1rem;
}

.caption-icon {
    width: 20px;
    height: 20px;
    color: #A58623;
    flex-shrink: 0;
}

.experience-caption p {
    font-size: 1.5rem;
    color: rgba(246, 239, 215, 0.85);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .experience-intro {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .experience-intro p {
        font-size: 1.5rem;
        line-height: 1.6;
    }
    
    .experience-video-container {
        border-radius: 8px;
		aspect-ratio: 16 / 9;
    }
	
	/* Fallback for older browsers */
    @supports not (aspect-ratio: 16 / 9) {
        .experience-video-container {
            padding-bottom: 56.25%;
        }
    }
    
    .video-play-btn {
        width: 80px;
        height: 80px;
    }
    
    .play-triangle {
        border-width: 12px 0 12px 20px;
    }
    
    .experience-caption {
        margin-top: 1.5rem;
        gap: 0.6rem;
        flex-wrap: wrap;
    }
    
    .caption-icon {
        width: 18px;
        height: 18px;
    }
    
    .experience-caption p {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .experience-intro p {
        font-size: 1.4rem;
    }
    
    .video-play-btn {
        width: 70px;
        height: 70px;
    }
    
    .play-triangle {
        border-width: 10px 0 10px 18px;
    }
    
    .experience-caption {
        margin-top: 1rem;
    }
    
    .experience-caption p {
        font-size: 1.2rem;
        text-align: center;
        width: 100%;
    }
}
        
        /* Hide play button elements on mobile, keep native video controls */
        @media (max-width: 767px) {
            .play-triangle,
            .play-ripple {
                display: none;
            }
            
            .video-play-btn {
                background: transparent;
                border: none;
                width: 100%;
                height: 100%;
                border-radius: 0;
            }
            
            .video-play-btn:hover {
                background: transparent;
                transform: none;
            }
        }
        
        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }
        
        .feature-card {
            text-align: center;
            padding: 3rem 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(164, 134, 35, 0.3);
        }
        
        .feature-icon {
            margin-bottom: 2rem;
        }
        
        .feature-card h3 {
            font-size: 2rem;
            color: #F6EFD7;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .feature-card p {
            font-size: 1.4rem;
            line-height: 1.6;
            color: rgba(246, 239, 215, 0.9);
        }
		
		/* ==========================================================================
   Traction & Credibility Section
   ========================================================================== */

.traction-section {
    background: linear-gradient(135deg, #0d2419 0%, #123524 50%, #1B5E20 100%);
    position: relative;
    overflow: hidden;
}

.traction-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(165, 134, 35, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.traction-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.traction-section .container {
    position: relative;
    z-index: 2;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

/* Metric Cards */
.metric-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(246, 239, 215, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.metric-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(165, 134, 35, 0.1);
    border-radius: 50%;
    color: #A58623;
}

.metric-icon svg {
    width: 40px;
    height: 40px;
}

.metric-value {
    font-size: 4rem;
    font-weight: 800;
    color: #F6EFD7;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.metric-label {
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(246, 239, 215, 0.95);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.metric-sublabel {
    font-size: 1.3rem;
    color: rgba(246, 239, 215, 0.7);
    font-weight: 400;
}

/* Mission Statement */
.mission-statement {
    max-width: 900px;
    margin: 4rem auto;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(165, 134, 35, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.mission-statement p {
    font-size: 1.8rem;
    line-height: 1.7;
    color: rgba(246, 239, 215, 0.95);
    margin: 0;
    font-weight: 400;
}

/* Partners Section */
.partners-section {
    margin-top: 4rem;
    text-align: center;
}

.partners-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(246, 239, 215, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.partner-logo {
    flex: 0 0 auto;
}

.logo-placeholder {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 2px dashed rgba(246, 239, 215, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(246, 239, 215, 0.5);
}

.logo-placeholder span {
    font-size: 1.3rem;
    color: rgba(246, 239, 215, 0.7);
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    line-height: 1.3;
}

/* Tablet Responsive */
@media (max-width: 1199px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .mission-statement {
        padding: 2.5rem 1.8rem;
    }
    
    .mission-statement p {
        font-size: 1.7rem;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .metric-card {
        padding: 2rem 1.5rem;
    }
    
    .metric-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }
    
    .metric-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .metric-value {
        font-size: 3.2rem;
    }
    
    .metric-label {
        font-size: 1.5rem;
    }
    
    .metric-sublabel {
        font-size: 1.2rem;
    }
    
    .mission-statement {
        margin: 3rem auto;
        padding: 2rem 1.5rem;
    }
    
    .mission-statement p {
        font-size: 1.5rem;
        line-height: 1.6;
    }
    
    .partners-section {
        margin-top: 3rem;
    }
    
    .partners-heading {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .partners-logos {
        gap: 2rem;
    }
    
    .logo-placeholder {
        width: 160px;
        height: 80px;
    }
    
    .logo-placeholder span {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .metric-card {
        padding: 1.8rem 1.2rem;
    }
    
    .metric-value {
        font-size: 2.8rem;
    }
    
    .mission-statement {
        padding: 1.8rem 1.2rem;
    }
    
    .mission-statement p {
        font-size: 1.4rem;
    }
    
    .partners-logos {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .logo-placeholder {
        width: 100%;
        max-width: 240px;
    }
}

       /* ==========================================================================
           Social Proof Bar
           ========================================================================== */

        .social-proof-bar {
            background: rgba(18, 53, 36, 0.95);
            backdrop-filter: blur(10px);
            padding: 2.5rem 2rem;
            border-top: 1px solid rgba(246, 239, 215, 0.1);
            border-bottom: 1px solid rgba(246, 239, 215, 0.1);
        }

        .social-proof-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .proof-item {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }

        .proof-icon {
            width: 48px;
            height: 48px;
            background: rgba(165, 134, 35, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #A58623;
        }

        .proof-icon svg {
            width: 24px;
            height: 24px;
        }

        .proof-text {
            display: flex;
            flex-direction: column;
        }

        .proof-number {
            font-size: 2.4rem;
            font-weight: 700;
            color: #F6EFD7;
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .proof-label {
            font-size: 1.3rem;
            color: rgba(246, 239, 215, 0.7);
            font-weight: 500;
        }

        /* ==========================================================================
           Benefits Section
           ========================================================================== */

        .benefits-section {
            padding: 10rem 2rem;
            background: linear-gradient(135deg, #0d2419 0%, #123524 50%, #1B5E20 100%);
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-overline {
            font-size: 1.4rem;
            font-weight: 700;
            color: #A58623;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(3rem, 5vw, 4.5rem);
            font-weight: 700;
            color: #F6EFD7;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .section-subtitle {
            font-size: clamp(1.6rem, 2.5vw, 2rem);
            color: rgba(246, 239, 215, 0.85);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(246, 239, 215, 0.15);
            border-radius: 16px;
            padding: 4rem 3rem;
            text-align: center;
            transition: all 0.4s ease;
        }

        .benefit-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2.5rem;
            background: rgba(165, 134, 35, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #A58623;
            transition: all 0.4s ease;
        }

        .benefit-card:hover .benefit-icon {
            background: rgba(165, 134, 35, 0.25);
            transform: scale(1.1);
        }

        .benefit-icon svg {
            width: 40px;
            height: 40px;
        }

        .benefit-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #F6EFD7;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .benefit-description {
            font-size: 1.5rem;
            line-height: 1.7;
            color: rgba(246, 239, 215, 0.85);
        }
		
       /* ==========================================================================
           Pricing Section
           ========================================================================== */

        .pricing-section {
            padding: 10rem 2rem;
            background-image: url('images/forest-site-ground.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }

        .pricing-section .container {
            position: relative;
            z-index: 2;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 6rem;
        }

        .pricing-card {
            background: rgba(18, 53, 36, 0.95);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(246, 239, 215, 0.15);
            border-radius: 20px;
            padding: 4rem 3rem;
            text-align: center;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            border-color: rgba(165, 134, 35, 0.5);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .pricing-card.featured {
            border-color: #A58623;
            border-width: 3px;
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-badge {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: linear-gradient(135deg, #2E7D32 0%, #A58623 100%);
            color: #F6EFD7;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 20px;
            margin-bottom: 2rem;
        }

        .pricing-tier {
            font-size: 1.6rem;
            font-weight: 600;
            color: #A58623;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .pricing-title {
            font-size: 2.4rem;
            font-weight: 700;
            color: #F6EFD7;
            margin-bottom: 2rem;
            line-height: 1.3;
        }

        .pricing-amount {
            margin-bottom: 3rem;
        }

        .pricing-currency {
            font-size: 3rem;
            font-weight: 700;
            color: #F6EFD7;
            vertical-align: top;
        }

        .pricing-price {
            font-size: 6rem;
            font-weight: 800;
            color: #F6EFD7;
            line-height: 1;
            letter-spacing: -2px;
        }

        .pricing-period {
            display: block;
            font-size: 1.4rem;
            color: rgba(246, 239, 215, 0.7);
            margin-top: 0.5rem;
            font-weight: 500;
        }

        .pricing-specs {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            padding: 2rem 1.5rem;
            margin-bottom: 2.5rem;
        }

        .pricing-spec {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(246, 239, 215, 0.1);
        }

        .pricing-spec:last-child {
            border-bottom: none;
        }

        .spec-label {
            font-size: 1.3rem;
            color: rgba(246, 239, 215, 0.7);
            font-weight: 500;
        }

        .spec-value {
            font-size: 1.5rem;
            color: #F6EFD7;
            font-weight: 700;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 3rem;
            flex-grow: 1;
        }

        .pricing-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem 0;
            font-size: 1.4rem;
            color: rgba(246, 239, 215, 0.9);
            line-height: 1.5;
        }

        .feature-check {
            width: 20px;
            height: 20px;
            color: #2E7D32;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .pricing-cta {
            display: block;
            width: 100%;
            padding: 1.8rem 2rem;
            background: #2E7D32;
            color: #F6EFD7;
            text-decoration: none;
            font-size: 1.7rem;
            font-weight: 700;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
        }

        .pricing-cta:hover {
            background: #A58623;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(165, 134, 35, 0.5);
        }

        .pricing-card.featured .pricing-cta {
            background: linear-gradient(135deg, #2E7D32 0%, #A58623 100%);
            box-shadow: 0 6px 20px rgba(165, 134, 35, 0.4);
        }

        /* ==========================================================================
           FAQ Section
           ========================================================================== */

        .faq-section {
            padding: 10rem 2rem;
            background: linear-gradient(135deg, #1B5E20 0%, #123524 50%, #0d2419 100%);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(246, 239, 215, 0.15);
            border-radius: 12px;
            margin-bottom: 2rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2.5rem 3rem;
            background: none;
            border: none;
            color: #F6EFD7;
            font-size: 1.8rem;
            font-weight: 700;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: #A58623;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            color: #A58623;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 2rem;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 3rem 2.5rem 3rem;
            font-size: 1.5rem;
            line-height: 1.7;
            color: rgba(246, 239, 215, 0.85);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }
		
       /* ==========================================================================
           Final CTA Section
           ========================================================================== */

        .final-cta-section {
            padding: 10rem 2rem;
            background-image: url('images/installation-concept-1.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .final-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(18, 53, 36, 0.9);
            z-index: 1;
        }

        .final-cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            color: #F6EFD7;
        }

        .final-cta-title {
            font-size: clamp(3.5rem, 6vw, 5.5rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 2.5rem;
        }

        .final-cta-subtitle {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            line-height: 1.6;
            margin-bottom: 4rem;
            color: rgba(246, 239, 215, 0.9);
        }

        .final-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 2.2rem 5rem;
            background: #A58623;
            color: #F6EFD7;
            text-decoration: none;
            font-size: 2.2rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(165, 134, 35, 0.5);
        }

        .final-cta-button:hover {
            background: #2E7D32;
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(46, 125, 50, 0.6);
        }
		
 /* ==========================================================================
           Responsive Design
 ========================================================================== */

        @media (max-width: 1199px) {
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 767px) {
            .social-proof-content {
                gap: 2rem;
            }

            .proof-number {
                font-size: 2rem;
            }

            .benefits-section,
            .pricing-section,
            .faq-section,
            .final-cta-section {
                padding: 6rem 1.5rem;
            }

            .section-header {
                margin-bottom: 4rem;
            }

            .faq-question {
                padding: 2rem 1.5rem;
                font-size: 1.6rem;
            }

            .faq-answer-content {
                padding: 0 1.5rem 2rem 1.5rem;
            }

            .final-cta-button {
                padding: 1.8rem 3rem;
                font-size: 1.9rem;
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .pricing-card {
                padding: 3rem 2rem;
            }

            .pricing-price {
                font-size: 5rem;
            }
        }

/* ==========================================================================
   Founder Section - Meet Nick Madge
   ========================================================================== */

.founder-section {
    background: linear-gradient(135deg, #123524 0%, #0d2419 100%);
    position: relative;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(165, 134, 35, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translateY(-50%);
}

/* Founder Content Layout */
.founder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

/* Founder Photo */
.founder-photo {
    position: relative;
}

.photo-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder styling for when real photo is added */
.photo-container img[src*="founder-photo.jpg"] {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.3) 0%, rgba(165, 134, 35, 0.3) 100%);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(18, 53, 36, 0.8) 0%, transparent 100%);
    pointer-events: none;
}

/* Founder Info */
.founder-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Quote Section */
.founder-quote {
    position: relative;
    padding-left: 5rem;
}

.quote-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    color: rgba(165, 134, 35, 0.3);
}

.quote-text {
    font-size: 2rem;
    line-height: 1.6;
    color: rgba(246, 239, 215, 0.95);
    font-style: italic;
    margin: 0;
    font-weight: 400;
}

/* Founder Identity */
.founder-identity {
    padding-top: 1rem;
    border-top: 2px solid rgba(165, 134, 35, 0.3);
}

.founder-name {
    font-size: 2.8rem;
    font-weight: 700;
    color: #F6EFD7;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.founder-title {
    font-size: 1.6rem;
    color: #A58623;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Bio */
.founder-bio {
    padding: 1.5rem 0;
}

.founder-bio p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: rgba(246, 239, 215, 0.85);
    margin: 0;
}

/* CTA Button */
.founder-cta {
    padding-top: 1rem;
}

.founder-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 2.8rem;
    background: #2E7D32;
    color: #F6EFD7;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.founder-cta-btn:hover {
    background: #A58623;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(165, 134, 35, 0.5);
}

.founder-cta-btn .cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.founder-cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

/* Tablet Responsive */
@media (max-width: 1199px) {
    .founder-content {
        grid-template-columns: 350px 1fr;
        gap: 4rem;
    }
    
    .quote-text {
        font-size: 1.8rem;
    }
    
    .founder-name {
        font-size: 2.4rem;
    }
}

/* Mobile Responsive - Stack Layout */
@media (max-width: 767px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }
    
    .photo-container {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .founder-quote {
        padding-left: 4rem;
    }
    
    .quote-icon {
        width: 35px;
        height: 35px;
    }
    
    .quote-text {
        font-size: 1.6rem;
        line-height: 1.5;
    }
    
    .founder-name {
        font-size: 2.2rem;
    }
    
    .founder-title {
        font-size: 1.4rem;
    }
    
    .founder-bio p {
        font-size: 1.5rem;
    }
    
    .founder-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .photo-container {
        max-width: 250px;
    }
    
    .founder-quote {
        padding-left: 3.5rem;
    }
    
    .quote-icon {
        width: 30px;
        height: 30px;
    }
    
    .quote-text {
        font-size: 1.5rem;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .founder-title {
        font-size: 1.3rem;
    }
    
    .founder-bio p {
        font-size: 1.4rem;
    }
}
        
        /* CTA Section */
        .cta-section {
            background-image: url('../images/forest-background.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #F6EFD7;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        
        .cta-section .container {
            position: relative;
            z-index: 2;
        }
        
        .cta-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: clamp(2.4rem, 4vw, 4rem);
            margin-bottom: 2rem;
            color: #F6EFD7;
            text-transform: uppercase;
            letter-spacing: 2px;
    		font-weight: 700;
		}
        
        .cta-description {
            font-size: clamp(1.4rem, 2vw, 1.8rem);
            margin-bottom: 2.5rem;
    		color: rgba(246, 239, 215, 0.95);
    		line-height: 1.6;
		}
		
		/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(46, 125, 50, 0.15);
    border: 1px solid rgba(165, 134, 35, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E7D32 0%, #A58623 100%);
    border: 3px solid #F6EFD7;
    margin-left: -12px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(165, 134, 35, 0.9);
    border: 3px solid #F6EFD7;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #F6EFD7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.proof-text {
    font-size: 1.5rem;
    color: rgba(246, 239, 215, 0.95);
    margin: 0;
}

.proof-text strong {
    color: #F6EFD7;
    font-weight: 700;
}

/* Product Card */
        .product-card {
            background: #F6EFD7;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(18, 53, 36, 0.2);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .product-header {
            background: #123524;
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .product-header h3 {
            color: #F6EFD7;
            font-size: 2.4rem;
            margin: 0;
			font-weight: 700;
        }
        
        .product-badge {
            background: linear-gradient(135deg, #A58623 0%, #2E7D32 100%);
    		color: #F6EFD7;
    		padding: 0.6rem 1.2rem;
    		border-radius: 20px;
    		font-size: 1.2rem;
    		font-weight: 700;
    		text-transform: uppercase;
    		letter-spacing: 0.5px;
    		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
		}
        
        .product-content {
            padding: 3rem 2.5rem;
            color: #333;
            text-align: center;
        }
        
		/* Price Display */
        .price-display {
            margin-bottom: 0.5rem;
        }
        
        .currency {
            font-size: 3rem;
            color: #123524;
            vertical-align: top;
			font-weight: 700;
        }
        
        .price {
            font-size: 6.5rem;
    		color: #123524;
    		font-weight: 800;
    		line-height: 1;
    		letter-spacing: -2px;
		}
        
        .price-period {
            font-size: 1.8rem;
            color: #666;
            margin-left: 1rem;
			font-weight: 500;
        }
		
		.price-note {
    		font-size: 1.4rem;
    		color: #888;
    		margin-bottom: 2rem;
    		font-style: italic;
		}
        
		/* Product Features */
        .product-features {
            list-style: none;
            text-align: left;
            margin: 2.5rem 0;
        }
        
        .product-features li {
            padding: 1rem 0 1rem 3rem;
            border-bottom: 1px solid #eee;
            position: relative;
            font-size: 1.4rem;
            line-height: 1.5;
			color: #333;
        }
		
		.product-features li:last-child {
    		border-bottom: none;
		}
        
        .product-features li:before {
            content: '✓';
            position: absolute;
            left: 1rem;
            color: #2E7D32;
            font-size: 1.6rem;
            font-weight: 700;
        }
		
		* Urgency Badges */
.urgency-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 2.5rem 0;
    flex-wrap: wrap;
}

.urgency-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: rgba(165, 134, 35, 0.1);
    border: 1px solid rgba(165, 134, 35, 0.3);
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #123524;
}

.urgency-icon {
    width: 16px;
    height: 16px;
    color: #A58623;
}
        
		/* Purchase Button */
        .purchase-btn {
            background: #2E7D32;
            color: #F6EFD7;
            border: none;
            padding: 1.6rem 3rem;
            font-size: 1.8rem;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-bottom: 2rem;
			box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
        }
        
        .purchase-btn:hover {
            background: #A58623;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(165, 134, 35, 0.4);
        }
        
		/* Guarantee Section */
        .guarantee {
            font-size: 1.2rem;
            color: #666;
            margin: 0;
        }
		
		.guarantee-section {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(46, 125, 50, 0.08);
    border-radius: 10px;
    text-align: left;
}

.guarantee-icon {
    width: 20px;
    height: 20px;
    color: #2E7D32;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.guarantee-text {
    flex: 1;
}

.guarantee-main {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.3rem 0;
}

.guarantee-sub {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}
    
	/* Mobile Responsive */
@media (max-width: 767px) {
    .cta-content h2 {
        font-size: clamp(2.2rem, 6vw, 3rem);
        letter-spacing: 1px;
    }
    
    .cta-description {
        font-size: clamp(1.4rem, 3vw, 1.6rem);
        margin-bottom: 2rem;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .proof-avatars {
        justify-content: center;
    }
    
    .avatar,
    .avatar-more {
        width: 35px;
        height: 35px;
        margin-left: -10px;
    }
    
    .avatar:first-child {
        margin-left: 0;
    }
    
    .avatar-more {
        font-size: 1.1rem;
    }
    
    .proof-text {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .product-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.8rem;
    }
    
    .product-header h3 {
        font-size: 2rem;
    }
    
    .product-badge {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }
    
    .product-content {
        padding: 2.5rem 1.8rem;
    }
    
    .price {
        font-size: 5.5rem;
    }
    
    .currency {
        font-size: 2.5rem;
    }
    
    .price-period {
        font-size: 1.6rem;
    }
    
    .price-note {
        font-size: 1.3rem;
    }
    
    .product-features li {
        font-size: 1.3rem;
        padding: 0.9rem 0 0.9rem 2.8rem;
    }
    
    .product-features li:before {
        left: 0.8rem;
        font-size: 1.4rem;
    }
    
    .urgency-badges {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .urgency-badge {
        justify-content: center;
        padding: 0.7rem 1.2rem;
        font-size: 1.2rem;
    }
    
    .purchase-btn {
        padding: 1.4rem 2.5rem;
        font-size: 1.6rem;
    }
    
    .guarantee-section {
        padding: 1.2rem;
    }
    
    .guarantee-main {
        font-size: 1.3rem;
    }
    
    .guarantee-sub {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .product-content {
        padding: 2rem 1.5rem;
    }
    
    .price {
        font-size: 5rem;
    }
    
    .currency {
        font-size: 2.2rem;
    }
    
    .price-period {
        font-size: 1.5rem;
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .product-features li {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   Explore Further Section - Navigation Cards
   ========================================================================== */

.explore-section {
    background: linear-gradient(135deg, #0d2419 0%, #123524 50%, #0d2419 100%);
    position: relative;
}

.explore-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.explore-section .section-header {
    margin-bottom: 5rem;
}

/* Explore Grid */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Explore Card */
.explore-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(246, 239, 215, 0.15);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-decoration: none;
    color: #F6EFD7;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.explore-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2E7D32 0%, #A58623 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.explore-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(165, 134, 35, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.explore-card:hover::before {
    transform: scaleX(1);
}

/* Explore Icon */
.explore-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #A58623;
    transition: all 0.4s ease;
}

.explore-card:hover .explore-icon {
    color: #F6EFD7;
    transform: scale(1.1);
}

.explore-icon svg {
    width: 60px;
    height: 60px;
}

/* Explore Content */
.explore-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #F6EFD7;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.explore-card p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(246, 239, 215, 0.85);
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Explore Arrow */
.explore-arrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #A58623;
    transition: all 0.3s ease;
}

.explore-card:hover .explore-arrow {
    color: #F6EFD7;
    gap: 1.2rem;
}

.explore-arrow svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.explore-card:hover .explore-arrow svg {
    transform: translateX(5px);
}

/* Tablet Responsive - 2x2 Grid */
@media (max-width: 1199px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .explore-card {
        padding: 2.5rem 2rem;
    }
    
    .explore-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .explore-icon svg {
        width: 55px;
        height: 55px;
    }
    
    .explore-card h3 {
        font-size: 2rem;
    }
    
    .explore-card p {
        font-size: 1.3rem;
    }
}

/* Mobile Responsive - Single Column */
@media (max-width: 767px) {
    .explore-section {
        padding: 6rem 0;
    }
    
    .explore-section .section-header {
        margin-bottom: 3rem;
    }
    
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .explore-card {
        padding: 2.5rem 2rem;
    }
    
    .explore-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.2rem;
    }
    
    .explore-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .explore-card h3 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }
    
    .explore-card p {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .explore-arrow {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .explore-card {
        padding: 2rem 1.5rem;
    }
    
    .explore-icon {
        width: 60px;
        height: 60px;
    }
    
    .explore-icon svg {
        width: 45px;
        height: 45px;
    }
    
    .explore-card h3 {
        font-size: 1.8rem;
    }
    
    .explore-card p {
        font-size: 1.25rem;
    }
    
    .explore-arrow {
        font-size: 1.3rem;
    }
}
	
        /* Mobile Responsive */
        @media (max-width: 1199px) {
            .content-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .calculator-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }
        
        @media (max-width: 767px) {
            .container {
                padding: 0 1.5rem;
            }
            
            .content-section {
                padding: 6rem 0;
            }
            
            .calculator-container {
                padding: 1.5rem;
            }
            
            /* Mobile Calculator Layout - Restore Original Grid */
            .calculator-layout {
                display: block;
            }
            
            .input-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
                margin-bottom: 3rem;
            }
            
            .input-group {
                display: flex;
                flex-direction: column;
            }
            
            .input-group label {
                font-size: 1.3rem;
                color: #F6EFD7;
                margin-bottom: 0.5rem;
                font-weight: 600;
            }
            
            .input-wrapper {
                position: relative;
                display: flex;
                align-items: center;
            }
            
            .calculator-input {
                width: 100%;
                padding: 1rem;
                border: 2px solid rgba(255, 255, 255, 0.3);
                border-radius: 8px;
                font-size: 1.4rem;
                text-align: center;
                transition: border-color 0.3s ease;
                background: rgba(255, 255, 255, 0.1);
                color: #F6EFD7;
            }
            
            .calculator-input:focus {
                outline: none;
                border-color: #F6EFD7;
                box-shadow: 0 0 0 3px rgba(246, 239, 215, 0.1);
            }
            
            .input-unit {
                position: absolute;
                right: 1rem;
                font-size: 1.2rem;
                color: rgba(246, 239, 215, 0.8);
                pointer-events: none;
            }
            
            /* Optimized preset buttons - keep horizontal */
            .calculator-presets {
                flex-wrap: nowrap;
                gap: 0.8rem;
                justify-content: center;
            }
            
            .preset-btn {
                padding: 0.7rem 1.2rem;
                font-size: 1.1rem;
                flex: 1;
                max-width: 100px;
                white-space: nowrap;
                background: rgba(255, 255, 255, 0.1);
                border: 2px solid rgba(255, 255, 255, 0.3);
                color: #F6EFD7;
            }
            
            .preset-btn:hover {
                background: rgba(255, 255, 255, 0.2);
            }
            
            .preset-btn.active {
                background: #F6EFD7;
                color: #123524;
                border-color: #F6EFD7;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .feature-card {
                padding: 2rem 1.5rem;
            }
            
            .product-header {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .product-content {
                padding: 2rem 1.5rem;
            }
            
            .price {
                font-size: 5rem;
            }
            
            .currency {
                font-size: 2.5rem;
            }
            
            .product-features li {
                font-size: 1.3rem;
                padding: 0.8rem 0 0.8rem 2.5rem;
            }
            
            .product-features li:before {
                left: 0.8rem;
                font-size: 1.4rem;
            }
        }
        
        @media (max-width: 480px) {
            .calculator-container {
                padding: 1rem;
            }
            
            /* Ensure preset buttons stay horizontal even on very small screens */
            .calculator-presets {
                gap: 0.5rem;
            }
            
            .preset-btn {
                padding: 0.6rem 0.8rem;
                font-size: 1rem;
                max-width: 85px;
                background: rgba(255, 255, 255, 0.1);
                border: 2px solid rgba(255, 255, 255, 0.3);
                color: #F6EFD7;
            }
            
            .preset-btn.active {
                background: #F6EFD7;
                color: #123524;
                border-color: #F6EFD7;
            }
            
            /* Tighter spacing for very small screens */
            .input-grid {
                gap: 0.8rem;
            }
            
            .input-group label {
                font-size: 1rem;
            }
            
            .calculator-input {
                padding: 0.7rem 0.4rem;
                font-size: 1.3rem;
                background: rgba(255, 255, 255, 0.1);
                border: 2px solid rgba(255, 255, 255, 0.3);
                color: #F6EFD7;
            }
            
            .input-unit {
                font-size: 0.9rem;
                right: 0.4rem;
                color: rgba(246, 239, 215, 0.8);
            }
            
            .result-value {
                font-size: 2rem;
                color: #F6EFD7;
            }
        }
		
/* ==========================================================================
   Footer Component
   ========================================================================== */

.site-footer {
    background: #0a1a12;
    color: rgba(246, 239, 215, 0.85);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(165, 134, 35, 0.3) 50%, transparent 100%);
}

/* Footer Main Content */
.footer-main {
    padding: 6rem 0 4rem 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Brand Column */
.footer-brand .footer-logo h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #F6EFD7;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-size: 1.4rem;
    color: #A58623;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.footer-description {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(246, 239, 215, 0.75);
    margin-bottom: 2rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(246, 239, 215, 0.15);
    border-radius: 50%;
    color: rgba(246, 239, 215, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(165, 134, 35, 0.2);
    border-color: rgba(165, 134, 35, 0.4);
    color: #F6EFD7;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Heading */
.footer-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: #F6EFD7;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(246, 239, 215, 0.75);
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #A58623;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #F6EFD7;
    transform: translateX(3px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Newsletter Section */
.footer-newsletter {
    max-width: 350px;
}

.newsletter-description {
    font-size: 1.3rem;
    line-height: 1.5;
    color: rgba(246, 239, 215, 0.7);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(246, 239, 215, 0.2);
    border-radius: 8px;
    color: #F6EFD7;
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(246, 239, 215, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: #A58623;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(165, 134, 35, 0.1);
}

.newsletter-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2E7D32;
    border: none;
    border-radius: 8px;
    color: #F6EFD7;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: #A58623;
    transform: translateX(3px);
}

.newsletter-btn svg {
    width: 20px;
    height: 20px;
}

.newsletter-privacy {
    font-size: 1.2rem;
    color: rgba(246, 239, 215, 0.6);
    line-height: 1.4;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    border-top: 1px solid rgba(246, 239, 215, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    font-size: 1.3rem;
    color: rgba(246, 239, 215, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 1.3rem;
    color: rgba(246, 239, 215, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #A58623;
}

/* Tablet Responsive */
@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-newsletter {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .newsletter-form {
        max-width: 500px;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 4rem 0 3rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(246, 239, 215, 0.1);
    }
    
    .footer-brand .footer-logo h3 {
        font-size: 2.2rem;
    }
    
    .footer-tagline {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 1.3rem;
    }
    
    .footer-social {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-column {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(246, 239, 215, 0.1);
    }
    
    .footer-column:last-child {
        border-bottom: none;
    }
    
    .footer-heading {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-links {
        gap: 0.7rem;
    }
    
    .footer-links a {
        font-size: 1.3rem;
    }
    
    .footer-newsletter {
        max-width: 100%;
    }
    
    .newsletter-description {
        font-size: 1.25rem;
        margin-bottom: 1.2rem;
    }
    
    .newsletter-input {
        padding: 1.1rem 1.3rem;
        font-size: 1.3rem;
    }
    
    .newsletter-btn {
        width: 46px;
        height: 46px;
    }
    
    .footer-bottom {
        padding: 1.8rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-copyright {
        font-size: 1.25rem;
    }
    
    .footer-legal {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .footer-legal a {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 3.5rem 0 2.5rem 0;
    }
    
    .footer-grid {
        gap: 2.5rem;
    }
    
    .footer-brand .footer-logo h3 {
        font-size: 2rem;
    }
    
    .footer-tagline {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 1.25rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-heading {
        font-size: 1.4rem;
    }
    
    .footer-links a {
        font-size: 1.25rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .newsletter-btn {
        width: 100%;
        height: 48px;
    }
    
    .newsletter-privacy {
        font-size: 1.15rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}
       
        /* Animation classes for progressive loading */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .fade-in-delay-1 {
            animation-delay: 0.2s;
        }
        
        .fade-in-delay-2 {
            animation-delay: 0.4s;
        }
        
        .fade-in-delay-3 {
            animation-delay: 0.6s;
        }
        
        /* Performance optimizations */
        img {
            max-width: 100%;
            height: auto;
        }
        
        video {
            max-width: 100%;
            height: auto;
        }
        
        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            
            html {
                scroll-behavior: auto;
            }
        }
        
        /* Focus styles for keyboard navigation */
        .nav-dot:focus,
        .preset-btn:focus,
        .calculator-input:focus,
        .purchase-btn:focus,
        .hero-cta-btn:focus {
            outline: 2px solid #F6EFD7;
            outline-offset: 2px;
        }
        
        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .hero-overlay {
                background: rgba(0, 0, 0, 0.7);
            }
            
            .nav-container {
                background: rgba(0, 0, 0, 0.8);
            }
        }