/* FASTORY.AI - GREEN & EMERALD VARIANT */
/* Inspired by myphd.ai auth page color scheme */

:root {
    /* Refined green color palette - lighter, softer tones */
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
}

/* ==================== HEADER GREEN ==================== */
.site-header-green {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.98) 0%, rgba(240, 253, 244, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--emerald-100);
    box-shadow: 0 1px 3px rgba(5, 150, 105, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 84px;
    transition: transform 0.3s ease-in-out;
}

/* Header scroll behavior - same as main site */
.site-header-green.header-hidden {
    transform: translateY(-100%);
}

.site-header-green.header-visible {
    transform: translateY(0);
}

.site-header-green .header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.site-header-green .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 84px;
    gap: 2rem;
}

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

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

.nav-link-green::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-500), var(--emerald-600));
    transition: width 0.3s ease;
}

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

.header-login-btn-green {
    text-decoration: none;
    color: var(--green-700);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.65rem 1.25rem;
    transition: all 0.2s ease;
    border-radius: 8px;
    border: 1px solid transparent;
}

.header-login-btn-green:hover {
    color: var(--green-700);
    background: var(--green-50);
    border-color: var(--emerald-100);
}

.header-signup-btn-green {
    text-decoration: none;
    background: white;
    color: var(--green-600);
    border: 1px solid var(--emerald-200);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.header-signup-btn-green:hover {
    background: var(--green-50);
    border-color: var(--green-600);
    transform: translateY(-1px);
}

/* ==================== HERO GREEN ==================== */
.hero-section-green {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--green-50) 0%, var(--emerald-50) 50%, white 100%);
    padding: 140px 0 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Emerald Aurora Effects */
.hero-aurora-green {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
    animation: aurora-float 20s ease-in-out infinite;
}

.hero-aurora-green-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--green-500), transparent);
    top: -200px;
    right: 10%;
    animation-delay: 0s;
}

.hero-aurora-green-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--emerald-600), transparent);
    bottom: -150px;
    left: 5%;
    animation-delay: 5s;
}

.hero-aurora-green-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--green-600), transparent);
    top: 40%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes aurora-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-title-green {
    font-family: "Raleway", sans-serif;
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--ink);
    text-shadow: 0 2px 20px rgba(16, 185, 129, 0.08);
}

.gradient-text-green {
    background: linear-gradient(135deg, var(--green-600) 0%, var(--emerald-600) 50%, var(--green-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: gradient-shimmer 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Pills with green styling - refined color scheme */
.pill-green {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

/* Agentic AI Reviewer - soft green */
.pill-green-live {
    background: rgba(22, 163, 74, 0.08);
    color: var(--green-700);
    border-color: rgba(22, 163, 74, 0.15);
    animation: pill-fade 2s ease-in-out infinite;
}

/* Agentic Editor - white outline */
.pill-green-soft {
    background: white;
    color: var(--green-600);
    border-color: var(--emerald-200);
}

/* Submission Q - keep as is */
.pill-green-outline {
    background: white;
    color: var(--green-600);
    border-color: var(--emerald-200);
}

@keyframes pill-fade {
    0%, 100% {
        background: rgba(22, 163, 74, 0.08);
    }
    50% {
        background: rgba(22, 163, 74, 0.12);
    }
}

/* CTA Button - styled like pill-green-live (Agentic AI Reviewer) */
.cta-btn-green-primary {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: rgba(22, 163, 74, 0.08);
    color: var(--green-700);
    border: 1px solid rgba(22, 163, 74, 0.15);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
    animation: pill-fade 2s ease-in-out infinite;
}

.cta-btn-green-primary:hover {
    background: rgba(22, 163, 74, 0.12);
    border-color: rgba(22, 163, 74, 0.25);
    transform: translateY(-1px);
}

/* Secondary button - white outline like "Submission Q" pill */
.cta-btn-green-secondary {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: white;
    color: var(--green-600);
    border: 1px solid var(--emerald-200);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.cta-btn-green-secondary:hover {
    background: var(--green-50);
    border-color: var(--green-600);
    transform: translateY(-1px);
}

.meta-badge-green {
    display: inline-block;
    background: white;
    border: 1px solid var(--emerald-200);
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-600);
    letter-spacing: 0.01em;
}

.meta-dot-green {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-600);
    flex-shrink: 0;
    box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.08);
}

/* Panel Green Styling - Refined and compact */
.hero-panel-green {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--emerald-100);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.08),
                0 1px 3px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-width: 420px;
    animation: panel-float 6s ease-in-out infinite;
}

.hero-panel-green:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(16, 185, 129, 0.12),
                0 2px 6px rgba(0, 0, 0, 0.08);
    border-color: var(--emerald-200);
}

@keyframes panel-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

.panel-kicker-green {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

/* Progress bars with innovative animations */
.progress-fill-green {
    display: block;
    height: 100%;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shimmer effect - sweeping light */
.progress-fill-green::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.progress-fill-green-primary {
    background: linear-gradient(90deg, var(--green-600), var(--green-500));
    box-shadow: 0 0 12px rgba(22, 163, 74, 0.3);
    animation: pulse-glow 3s ease-in-out infinite, bar-breathe 4s ease-in-out infinite;
}

.progress-fill-green-secondary {
    background: linear-gradient(90deg, var(--green-600), var(--emerald-600));
    box-shadow: 0 0 10px rgba(22, 163, 74, 0.25);
    animation: pulse-glow 3s ease-in-out infinite 0.6s, bar-breathe 4s ease-in-out infinite 0.6s;
}

.progress-fill-green-tertiary {
    background: linear-gradient(90deg, var(--emerald-600), var(--green-500));
    box-shadow: 0 0 8px rgba(22, 163, 74, 0.2);
    animation: pulse-glow 3s ease-in-out infinite 1.2s, bar-breathe 4s ease-in-out infinite 1.2s;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

@keyframes bar-breathe {
    0%, 100% {
        filter: brightness(1) saturate(1);
    }
    50% {
        filter: brightness(1.15) saturate(1.1);
    }
}

/* Check icons with green - elegant design */
.check-icon-green {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--green-600);
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1),
                0 2px 4px rgba(22, 163, 74, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: check-pulse 2s ease-in-out infinite;
}

.check-row:hover .check-icon-green {
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.15),
                0 2px 8px rgba(22, 163, 74, 0.25);
    transform: scale(1.1);
}

.check-icon-green::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

@keyframes check-pulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1),
                    0 2px 4px rgba(22, 163, 74, 0.15);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.15),
                    0 2px 6px rgba(22, 163, 74, 0.2);
    }
}

/* Additional polish and refinements */
.hero-subtitle {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
}

.hero-subtitle strong {
    color: var(--green-700);
    font-weight: 600;
}

.eyebrow-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.8125rem;
    margin-top: 3rem;
    font-weight: 500;
}

/* Progress bar container styling */
.progress-bar {
    background: var(--gray-100);
    border-radius: 4px;
    height: 8px;
    overflow: hidden;
    position: relative;
}

.progress-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.progress-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.875rem;
}

.progress-value {
    color: var(--gray-600);
    font-size: 0.85rem;
    font-weight: 600;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.panel-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    line-height: 1.3;
}

.panel-progress {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.panel-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.check-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.check-row:hover {
    background: rgba(22, 163, 74, 0.02);
    border-color: rgba(22, 163, 74, 0.2);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.08);
    transform: translateY(-1px);
}

.check-copy {
    display: flex;
    flex-direction: column;
}

.check-title {
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.3;
}

.check-sub {
    color: var(--gray-600);
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0.15rem 0 0;
}

.hero-meta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--gray-700);
    font-size: 0.98rem;
}

.meta-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

/* Hero grid layout - better proportions */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-right {
        justify-content: center;
    }

    .hero-panel-green {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title-green {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-title-green br {
        display: none;
    }

    .hero-section-green {
        background: linear-gradient(180deg, var(--green-50) 0%, white 100%);
        padding: 120px 0 60px;
    }

    .hero-aurora-green {
        display: none;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .eyebrow-row {
        justify-content: flex-start;
        gap: 0.4rem;
    }

    .pill-green {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    .hero-cta {
        justify-content: flex-start;
        gap: 0.5rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .cta-btn-green-primary {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }

    .meta-badge-green {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-meta {
        gap: 0.6rem;
    }

    .meta-row {
        font-size: 0.875rem;
        gap: 0.5rem;
    }

    .meta-dot-green {
        width: 6px;
        height: 6px;
    }

    .meta-badges {
        margin-top: 0.5rem;
        gap: 0.4rem;
    }

    .hero-left {
        gap: 1.25rem;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-panel-green {
        padding: 1.25rem;
    }

    .panel-title {
        font-size: 1rem;
    }

    .hero-note {
        font-size: 0.75rem;
        margin-top: 2rem;
    }
}

/* ==================== FOOTER GREEN ==================== */
.site-footer-green {
    background: linear-gradient(180deg, white 0%, var(--green-50) 100%);
    border-top: 1px solid var(--emerald-100);
    padding-top: 0;
}

/* Journey Navigator */
.footer-journey-green {
    background: linear-gradient(135deg, var(--green-50), var(--emerald-50));
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--emerald-100);
}

.footer-journey-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.footer-journey-label-green {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green-700);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-journey-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.journey-step-green {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--emerald-100);
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 80px;
}

.journey-step-green:hover {
    background: var(--green-50);
    border-color: var(--green-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

.journey-step-green .journey-step-icon {
    color: var(--green-600);
}

.journey-step-green .journey-step-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
}

.journey-arrow-green {
    color: var(--green-600);
    font-size: 1.25rem;
    font-weight: 300;
}

/* Footer Content */
.footer-content-green {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
}

.footer-brand-green {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand-logo {
    height: 36px;
    width: auto;
}

.footer-brand-tagline-green {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

.footer-brand-mission-green {
    font-size: 0.8125rem;
    color: var(--green-600);
    font-weight: 600;
    margin: 0;
}

.footer-section-green h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1rem;
}

.footer-links-green {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links-green a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.footer-links-green a:hover {
    color: var(--green-600);
    padding-left: 4px;
}

.footer-cta-green,
.footer-cta {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.08), rgba(16, 185, 129, 0.08));
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--emerald-100);
    max-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-cta-green h4,
.footer-cta h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: white !important;
    margin: 0;
    line-height: 1.3;
}

.footer-cta-text-green,
.footer-cta-text {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin: 0;
}

.footer-cta-btn-green,
.footer-cta-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    background: var(--green-600);
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
}

.footer-cta-btn-green:hover,
.footer-cta-btn:hover {
    background: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

/* Footer Bottom */
.footer-bottom-green {
    background: linear-gradient(135deg, var(--green-600), var(--emerald-600));
    padding: 1.5rem 0;
}

.footer-bottom-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright-green {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-tagline-green {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand-green {
        grid-column: 1 / -1;
    }

    .footer-cta-green {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-cta-green,
    .footer-cta {
        max-width: 100%;
    }

    .footer-journey-flow {
        gap: 0.5rem;
    }

    .journey-step-green {
        min-width: 60px;
        padding: 0.5rem 0.75rem;
    }

    .journey-arrow-green {
        font-size: 1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ==================== MOBILE MENU GREEN ==================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--green-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.nav-item-mobile {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 968px) {
    .header-login-btn-green {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-header-green {
        height: 70px;
    }

    .site-header-green .header-content {
        height: 70px;
    }

    .site-header-green .header-container {
        padding: 0 1.5rem;
    }

    .logo-img {
        height: 30px;
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 10001;
    }

    .header-signup-btn-green {
        font-size: 0.8125rem;
        padding: 0.5rem 1.15rem;
    }

    .header-cta {
        display: none !important;
    }

    /* Mobile Navigation for Green */
    .main-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(236, 253, 245, 0.98), rgba(240, 253, 244, 0.98));
        backdrop-filter: blur(12px);
        z-index: 9999;
        overflow-y: auto;
        max-height: calc(100vh - 70px);
        box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
        border-bottom: 1px solid var(--emerald-100);
    }

    .main-nav.active {
        display: block !important;
    }

    .nav-list {
        display: block !important;
        padding: 1rem 1.5rem !important;
        margin: 0;
        list-style: none;
    }

    .nav-item {
        display: block !important;
        border-bottom: 1px solid var(--emerald-100);
        margin: 0;
    }

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

    .nav-link-green {
        display: block !important;
        padding: 0.875rem 0 !important;
        font-size: 0.9375rem !important;
        font-weight: 500 !important;
        color: var(--ink) !important;
    }

    .nav-link-green::after {
        display: none !important;
    }

    .nav-item-mobile {
        display: block !important;
    }

    .nav-item-mobile .nav-link-green {
        color: var(--green-700) !important;
        font-weight: 600 !important;
    }

    .hero-section-green {
        padding: 100px 0 80px;
    }

    .hero-container {
        padding: 0 1.5rem;
    }
}

/* ==================== HOMEPAGE SECTIONS GREEN ==================== */

/* Stats Section - Green accents */
.home-stats-section {
    background: linear-gradient(180deg, white 0%, var(--green-50) 100%);
    border-top: 0px !important;
    border-bottom: 0px !important;
}

.home-stat-number {
    color: var(--green-700) !important;
    text-shadow: 0 2px 12px rgba(22, 163, 74, 0.1);
}

/* Journey Section - Green theme */
.home-journey-section {
    background: var(--green-50);
    border-top: 0px !important;
    border-bottom: 0px !important;
}

.home-section-title {
    color: var(--ink);
}

.home-journey-badge {
    background: rgba(22, 163, 74, 0.08);
    color: var(--green-700);
    border: 1px solid rgba(22, 163, 74, 0.15);
}

.home-journey-badge svg {
    color: var(--green-600);
}

.home-journey-card {
    background: white;
    border: 1px solid var(--emerald-100);
    transition: all 0.3s ease;
}

.home-journey-card:hover {
    border-color: var(--green-600);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.12);
    transform: translateY(-4px);
}

.home-journey-link {
    color: var(--green-600);
    border: 1px solid var(--green-600);
    background: white;
}

.home-journey-link:hover {
    background: var(--green-600);
    color: white;
}

.home-journey-link svg {
    color: currentColor;
}

.home-journey-text-link {
    color: var(--green-600);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--green-600);
    transition: all 0.2s ease;
    display: inline-block;
}

.home-journey-text-link:hover {
    color: var(--green-700);
    border-bottom-color: var(--green-700);
    transform: translateX(4px);
}

/* Why Section - Green accents */
.home-why-section {
    background: white;
}

.home-why-icon {
    color: var(--green-600);
}

.home-why-card {
    border: 1px solid var(--emerald-100);
    transition: all 0.3s ease;
}

.home-why-card:hover {
    border-color: var(--green-600);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.12);
}

/* CTA Section - Green theme */
.home-cta-section {
    background: linear-gradient(135deg, var(--green-50), var(--emerald-50));
    border-top: 0px;
}

.btn-primary,
.btn-large {
    background: var(--green-600) !important;
    color: white !important;
    border: none !important;
}

.btn-primary:hover,
.btn-large:hover {
    background: var(--green-700) !important;
}

.btn-secondary {
    background: white !important;
    color: var(--green-600) !important;
    border: 1px solid var(--green-600) !important;
}

.btn-secondary:hover {
    background: var(--green-600) !important;
    color: white !important;
}

/* ==================== PRICING PAGE GREEN ==================== */

.pricing-header {
    background: linear-gradient(180deg, var(--green-50), white);
    border-bottom: 0px;
}

.pricing-toggle-btn.pricing-toggle-active {
    background: var(--green-600) !important;
    color: white !important;
}

.pricing-save-badge {
    background: rgba(22, 163, 74, 0.15);
    color: var(--green-700);
}

.pricing-tier-popular {
    border-color: var(--green-600) !important;
    box-shadow: 0 0 0 2px var(--green-600) !important;
}

.tier-popular-badge {
    background: var(--green-600) !important;
    color: white !important;
}

.tier-btn {
    background: var(--green-600) !important;
    color: white !important;
}

.tier-btn:hover {
    background: var(--green-700) !important;
}

.tier-btn-outline {
    background: white !important;
    color: var(--green-600) !important;
    border: 1px solid var(--green-600) !important;
}

.tier-btn-outline:hover {
    background: var(--green-600) !important;
    color: white !important;
}

.tier-check {
    color: var(--green-600);
}

.pricing-faq-section {
    background: var(--green-50);
}

.faq-question {
    border-color: var(--emerald-100);
}

.faq-question:hover {
    border-color: var(--green-600);
}

/* ==================== ABOUT PAGE GREEN ==================== */

.about-hero {
    background: linear-gradient(180deg, var(--green-50), white);
    border-bottom: 0px;
}

.about-hero-title {
    color: var(--ink);
}

.about-section {
    border-top: 0px;
    border-bottom: 0px;
}

.about-section-gray {
    background: var(--green-50) !important;
}

.about-section-cta {
    background: linear-gradient(135deg, var(--green-50), var(--emerald-50)) !important;
    border-top: 0px;
}

.about-feature-icon {
    color: var(--green-600) !important;
}

.about-stat {
    border-color: var(--emerald-100);
    transition: all 0.3s ease;
}

.about-stat:hover {
    border-color: var(--green-600);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

.about-stat-number {
    color: var(--green-700);
}

.about-cta {
    max-width: 800px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1.5rem;
    line-height: 1.3;
}

.about-cta-link {
    color: var(--green-600);
    text-decoration: none;
    border-bottom: 2px solid var(--green-600);
    transition: all 0.2s ease;
}

.about-cta-link:hover {
    color: var(--green-700);
    border-bottom-color: var(--green-700);
}

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

.about-cta-note {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* ==================== RESEARCH OS PAGE GREEN ==================== */

.ros-hero {
    background: linear-gradient(180deg, var(--green-50), white);
    border-bottom: 0px;
}

.ros-feature-section {
    background: white;
    border-bottom: 0px;
}

.ros-feature-section:nth-child(even) {
    background: var(--green-50);
}

.ros-check {
    color: var(--green-600) !important;
}

.ros-feature-badge {
    background: rgba(22, 163, 74, 0.08) !important;
    color: var(--green-700) !important;
    border: 1px solid rgba(22, 163, 74, 0.15) !important;
}

.ros-feature-badge svg {
    color: var(--green-600) !important;
}

.ros-feature-visual {
    background: var(--green-50) !important;
    border-color: var(--emerald-100) !important;
}

.ros-gif {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(22, 163, 74, 0.15);
    transition: all 0.3s ease;
    margin: 0 auto;
    object-fit: contain;
}

.ros-gif:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 48px rgba(22, 163, 74, 0.2);
}

@media (max-width: 768px) {
    .ros-gif {
        border-radius: 8px;
    }
}

.ros-cta-section {
    background: linear-gradient(135deg, var(--green-50), var(--emerald-50));
    border-top: 0px;
}

/* ==================== CONTACT PAGE GREEN ==================== */

.contact-hero {
    background: linear-gradient(180deg, var(--green-50), white);
    border-bottom: 0px;
}

.contact-form-section {
    background: white;
}

.contact-submit-btn {
    background: var(--green-600) !important;
    color: white !important;
}

.contact-submit-btn:hover {
    background: var(--green-700) !important;
}

.contact-info-card {
    border-color: var(--emerald-100);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--green-600);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

.contact-info-icon {
    color: var(--green-600);
}

/* ==================== RESPONSIVE GREEN SECTIONS ==================== */

@media (max-width: 768px) {
    .home-stats-section,
    .home-journey-section,
    .home-why-section,
    .home-cta-section {
        padding: 60px 1.5rem;
    }

    .pricing-header {
        padding: 100px 1.5rem 40px;
    }

    .about-hero {
        padding: 120px 1.5rem 50px;
    }
}
