/* MossLog Marketing Site - Enterprise Professional Design */

:root {
    /* Bark Brown Theme (matching the app) */
    --primary-color: #7d6a5a;
    --primary-light: #a58f7f;
    --primary-dark: #5a4a3d;
    --bg-color: #f8f6f5;

    /* Moss Green Accent */
    --moss-green: #5a7d5a;
    --moss-light: #7fa57f;
    --moss-dark: #3d5a3d;

    /* Neutral colors */
    --white: #ffffff;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --text-muted: #95a5a6;
    --border-color: #dfe6e9;

    /* Enhanced Shadow System */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.15), 0 10px 20px -5px rgba(0, 0, 0, 0.08);
    --shadow-glow-moss: 0 0 20px rgba(90, 125, 90, 0.3);
    --shadow-glow-primary: 0 0 20px rgba(125, 106, 90, 0.3);

    /* Typography */
    --font-family-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-heading: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* Border Radius Scale */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(223, 230, 233, 0.5);
    z-index: 1000;
    animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition: box-shadow 300ms ease, background-color 300ms ease;
}

.nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    height: 32px;
    width: 32px;
    filter: brightness(0.4) sepia(100%) saturate(200%) hue-rotate(65deg);
    opacity: 0.95;
}

.logo-text {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 200ms ease;
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--moss-green);
    transition: width 300ms ease;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: linear-gradient(135deg, var(--moss-green), var(--moss-light));
    color: var(--white) !important;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    transition: all 200ms ease;
    box-shadow: var(--shadow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-moss);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 300ms ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-4xl) var(--spacing-xl);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

/* Hero Background with Ken Burns Effect */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg,
            rgba(248, 246, 245, 0.7) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(248, 246, 245, 0.7) 100%),
        url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=80');
    background-size: cover;
    background-position: center;
    animation: kenBurns 25s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.08) translate(-1%, -1%);
    }
}



.hero-container {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-family-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.04em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

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

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
    line-height: 1.7;
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1s;
}

.hero-tagline {
    font-family: var(--font-family-heading);
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: var(--spacing-2xl);
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.2s;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

/* Hero Donate Button */
.hero-donate {
    margin-top: var(--spacing-lg);
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.1s;
}

.btn-donate-hero {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 200ms ease;
    box-shadow: 0 2px 8px rgba(125, 106, 90, 0.25);
}

.btn-donate-hero svg {
    flex-shrink: 0;
    transition: transform 300ms ease;
}

.btn-donate-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 106, 90, 0.35);
}

.btn-donate-hero:hover svg {
    transform: scale(1.15);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    text-decoration: none;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards, bounce 2s ease-in-out infinite;
    animation-delay: 1.5s, 2s;
}

@keyframes fadeIn {
    to {
        opacity: 0.6;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

.scroll-indicator:hover {
    opacity: 1;
}

/* App Preview Section */
.app-preview {
    background: var(--white);
    overflow: hidden;
}

.preview-devices {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
}

.device-frame {
    background: var(--text-primary);
    border-radius: var(--radius-xl);
    padding: 8px;
    box-shadow: var(--shadow-xl);
    transition: transform 300ms ease;
}

.device-frame:hover {
    transform: translateY(-8px);
}

.device-phone {
    width: 220px;
}

.device-phone .device-screen {
    border-radius: calc(var(--radius-xl) - 4px);
    aspect-ratio: 9/19.5;
    background: var(--bg-color);
    overflow: hidden;
}

.device-tablet {
    width: 380px;
}

.device-tablet .device-screen {
    border-radius: calc(var(--radius-lg) - 4px);
    aspect-ratio: 4/3;
    background: var(--bg-color);
    overflow: hidden;
}

.device-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder for missing screenshots */
.device-screenshot[src="screenshot-mobile.png"],
.device-screenshot[src="screenshot-tablet.png"] {
    background: linear-gradient(135deg, rgba(90, 125, 90, 0.1), rgba(127, 165, 127, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Platform Indicators */
.platform-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-secondary);
    transition: all 300ms ease;
}

.platform-item:hover {
    color: var(--moss-green);
    transform: translateY(-2px);
}

.platform-item svg {
    opacity: 0.7;
    transition: opacity 300ms ease;
}

.platform-item:hover svg {
    opacity: 1;
}

.platform-item span {
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .preview-devices {
        flex-direction: column;
        align-items: center;
    }

    .device-phone {
        width: 180px;
    }

    .device-tablet {
        width: 280px;
    }

    .platform-indicators {
        gap: var(--spacing-xl);
    }
}

/* Buttons */
.btn-primary,
.btn-primary-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--moss-green), var(--moss-light));
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 200ms ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 500ms ease;
}

.btn-primary:hover::before,
.btn-primary-large:hover::before {
    left: 100%;
}

.btn-primary-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1.1rem;
}

.btn-primary:hover,
.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-moss);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--moss-green);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--moss-green);
    transition: all 200ms ease;
}

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

/* Subtle Glow Animation for Primary Buttons */
@keyframes subtleGlow {
    0%, 100% {
        box-shadow: var(--shadow), 0 0 20px rgba(90, 125, 90, 0.2);
    }
    50% {
        box-shadow: var(--shadow-lg), 0 0 30px rgba(90, 125, 90, 0.4);
    }
}

.get-started-cta .btn-primary-large {
    animation: subtleGlow 4s ease-in-out infinite;
}

/* Sections */
.section {
    padding: var(--spacing-4xl) var(--spacing-xl);
    position: relative;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--moss-green);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.03em;
}

/* Button with icon */
.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.btn-with-icon svg {
    flex-shrink: 0;
    transition: transform 300ms ease;
}

.btn-with-icon:hover svg {
    transform: translateX(4px);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
    line-height: 1.7;
}

/* Problem Section */
.problem {
    background: linear-gradient(135deg, var(--bg-color) 0%, rgba(165, 143, 127, 0.1) 100%);
}

.problem-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.problem-solution {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-top: var(--spacing-xl);
    text-align: center;
}

.solution-highlight {
    display: block;
    font-family: var(--font-family-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--moss-green);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

/* Stats Section */
.stats {
    background:
        linear-gradient(135deg,
            rgba(90, 125, 90, 0.88) 0%,
            rgba(61, 90, 61, 0.92) 100%),
        url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

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

.stat-item {
    text-align: center;
    padding: var(--spacing-xl);
}

.stat-number {
    font-family: var(--font-family-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item.animated .stat-number {
    opacity: 1;
    transform: scale(1);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Features Section */
.features {
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.94)),
        url('https://images.unsplash.com/photo-1418065460487-3e41a6c84dc5?w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: var(--bg-color);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--moss-light);
}

.feature-icon {
    margin-bottom: var(--spacing-lg);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--moss-green), var(--moss-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow-moss);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    stroke-width: 2;
}

.feature-card h3 {
    font-family: var(--font-family-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Who Section */
.who {
    background: var(--white);
}

.who-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    text-align: center;
}

.who-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-2xl);
}

.who-item {
    background: var(--bg-color);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-weight: 500;
    border: 2px solid var(--primary-light);
    transition: all 300ms ease;
}

.who-item:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.who-teams {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-xl) var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(90, 125, 90, 0.06), rgba(127, 165, 127, 0.06));
    border: 1px solid var(--moss-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Philosophy Section */
.philosophy {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.philosophy .section-title {
    color: var(--white);
}

.philosophy-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.philosophy-quote {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-xl);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.philosophy-quote::before,
.philosophy-quote::after {
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    opacity: 0.3;
    position: absolute;
}

.philosophy-quote::before {
    content: '"';
    top: 0;
    left: 0;
    transform: translate(-50%, -20%);
}

.philosophy-quote::after {
    content: '"';
    bottom: 0;
    right: 0;
    transform: translate(50%, 20%);
}

/* Privacy Section */
.privacy {
    background: linear-gradient(135deg, rgba(90, 125, 90, 0.08) 0%, rgba(127, 165, 127, 0.12) 100%);
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
}

.privacy-item {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    transition: all 300ms ease;
    border: 1px solid transparent;
}

.privacy-item:hover {
    background: var(--bg-color);
    border-color: var(--border-color);
    transform: translateY(-4px);
}

.privacy-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(90, 125, 90, 0.1), rgba(127, 165, 127, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: all 300ms ease;
}

.privacy-item:hover .privacy-icon {
    background: linear-gradient(135deg, var(--moss-green), var(--moss-light));
    transform: scale(1.1);
}

.privacy-icon svg {
    width: 24px;
    height: 24px;
    color: var(--moss-green);
    transition: color 300ms ease;
}

.privacy-item:hover .privacy-icon svg {
    color: var(--white);
}

.privacy-item h3 {
    font-family: var(--font-family-heading);
    color: var(--moss-green);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.privacy-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Our Story Section */
.our-story {
    background: linear-gradient(135deg, rgba(125, 106, 90, 0.06) 0%, rgba(165, 143, 127, 0.1) 100%);
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.values-box {
    background: linear-gradient(135deg, rgba(90, 125, 90, 0.08), rgba(127, 165, 127, 0.08));
    border: 2px solid var(--moss-light);
    padding: var(--spacing-xl) var(--spacing-2xl);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-2xl);
}

.values-box h3 {
    font-family: var(--font-family-heading);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--moss-green);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
}

.value-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all 300ms ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.value-item strong {
    font-family: var(--font-family-heading);
    font-size: 1rem;
    display: block;
    color: var(--moss-green);
}

.value-item span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Get Started CTA (in install section) */
.get-started-cta {
    margin-top: var(--spacing-3xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.get-started-note {
    margin-top: var(--spacing-md);
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
}

/* Conservation CTA Section */
.conservation-cta {
    background: linear-gradient(135deg, rgba(125, 106, 90, 0.08) 0%, rgba(165, 143, 127, 0.12) 100%);
    text-align: center;
}

.conservation-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.conservation-cta-title {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.conservation-cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.btn-donate-large {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-2xl);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 200ms ease;
    box-shadow: 0 4px 12px rgba(125, 106, 90, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-donate-large svg {
    flex-shrink: 0;
    transition: transform 300ms ease;
}

.btn-donate-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 500ms ease;
}

.btn-donate-large:hover::before {
    left: 100%;
}

.btn-donate-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(125, 106, 90, 0.4);
}

.btn-donate-large:hover svg {
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.95)),
        url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.contact-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
}

.contact-form-embed {
    margin-top: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-embed iframe {
    min-height: 500px;
    border-radius: var(--radius-md);
}

/* How to Install Section */
.how-to-install {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 246, 245, 0.94) 100%),
        url('https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding-top: var(--spacing-md);
}

.install-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-3xl);
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Install Steps Container with Connectors */
.install-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
}

.install-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.install-card:hover {
    border-color: var(--moss-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Step Numbers */
.install-card::before {
    content: attr(data-step);
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--moss-green), var(--moss-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.install-card-title {
    font-family: var(--font-family-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--moss-green);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--moss-light);
    margin-top: var(--spacing-sm);
}

.install-steps {
    margin: 0;
    padding-left: var(--spacing-lg);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.install-steps li {
    margin-bottom: var(--spacing-sm);
}

.install-steps li:last-child {
    margin-bottom: 0;
}

.install-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background:
        linear-gradient(135deg,
            rgba(90, 74, 61, 0.97) 0%,
            rgba(90, 74, 61, 0.95) 100%),
        url('https://images.unsplash.com/photo-1476231682828-37e571bc172f?w=1920&q=80');
    background-size: cover;
    background-position: center bottom;
    color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-3xl) var(--spacing-xl) var(--spacing-xl);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.footer-logo-icon {
    height: 28px;
    width: 28px;
    filter: brightness(1.8) sepia(100%) saturate(200%) hue-rotate(65deg);
    opacity: 0.95;
}

.footer-logo {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.footer-column h4 {
    font-family: var(--font-family-heading);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    transition: all 200ms ease;
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: var(--spacing-xs);
}

/* Responsive Design */
@media (max-width: 968px) {
    .install-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: calc(60px + var(--spacing-xl)) var(--spacing-xl) var(--spacing-xl);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 400ms cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        display: block;
        padding: var(--spacing-md) 0;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
        font-size: 1.1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta {
        display: block;
        margin-top: var(--spacing-md);
        text-align: center;
        border: none;
        padding: var(--spacing-md) var(--spacing-xl) !important;
    }

    .hero {
        min-height: calc(100vh - 60px);
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .section {
        padding: var(--spacing-2xl) var(--spacing-md);
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: var(--spacing-md);
    }

    .preview-card {
        padding: var(--spacing-md) var(--spacing-lg);
    }
}

/* Support Page */
.support-hero {
    background:
        linear-gradient(135deg,
            rgba(90, 125, 90, 0.85) 0%,
            rgba(61, 90, 61, 0.9) 100%),
        url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: calc(var(--spacing-4xl) * 2) var(--spacing-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-title {
    font-family: var(--font-family-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.support-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.support-hero-cta {
    margin-top: var(--spacing-2xl);
}

.support-content {
    background: var(--white);
}

.support-story {
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.support-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.support-story p:last-child {
    margin-bottom: 0;
}

.support-story a {
    color: var(--moss-green);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--moss-light);
    transition: all 200ms ease;
}

.support-story a:hover {
    color: var(--moss-dark);
    border-bottom-color: var(--moss-green);
}

.support-philosophy {
    padding: var(--spacing-lg) var(--spacing-xl);
    background: linear-gradient(135deg, rgba(90, 125, 90, 0.06), rgba(127, 165, 127, 0.06));
    border-left: 3px solid var(--moss-green);
    border-radius: var(--radius-md);
    font-style: italic;
}

.support-cta-container {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.support-cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-2xl);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 200ms ease;
    box-shadow: 0 4px 12px rgba(125, 106, 90, 0.3);
    position: relative;
    overflow: hidden;
}

.support-cta-button svg {
    flex-shrink: 0;
    transition: transform 300ms ease;
}

.support-cta-button:hover svg {
    transform: scale(1.1);
}

.support-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 500ms ease;
}

.support-cta-button:hover::before {
    left: 100%;
}

.support-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(125, 106, 90, 0.4);
}

.support-cta-note {
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.support-back {
    text-align: center;
    padding-top: var(--spacing-2xl);
    border-top: 1px solid var(--border-color);
}

.support-back-link {
    color: var(--moss-green);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 200ms ease;
}

.support-back-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .support-title {
        font-size: 2rem;
    }

    .support-subtitle {
        font-size: 1.1rem;
    }
}

/* Scroll-triggered animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax elements */
.parallax-element {
    will-change: transform;
}
