:root {
    --primary-green: #00A651;
    --primary-light: #00c862;
    --primary-dark: #008f45;
    --secondary-dark: #0f172a;
    --bg-light: #ffffff;
    --bg-soft: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass-white: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-premium: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-green: 0 10px 25px -5px rgba(0, 166, 81, 0.2);
    --radius-full: 500px;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.06);
    --nav-height: 80px;
}

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

html {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: var(--bg-soft);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   TOP NAVIGATION - PREMIUM RE-DESIGN
======================================== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: #008f45;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    margin: 0;
}

.top-nav.scrolled {
    height: 70px;
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 166, 81, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1px;
    cursor: pointer;
    text-decoration: none;
    z-index: 10;
    flex-shrink: 0;
}

.brand-logo {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 166, 81, 0.2));
}

.nav-brand:hover .brand-logo {
    transform: scale(1.1) rotate(-5deg);
}



.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}

.brand-florian {
    color: white;
    transition: var(--transition-smooth);
}

.top-nav.scrolled .brand-florian {
    color: var(--secondary-dark);
}

.brand-bd {
    color: white;
    transition: var(--transition-smooth);
}

.top-nav.scrolled .brand-bd {
    color: var(--primary-green);
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.03);
    padding: 6px;
    border-radius: var(--radius-full);
    position: relative;
    flex-shrink: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.top-nav.scrolled .nav-link {
    color: var(--text-muted);
}

.nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.top-nav.scrolled .nav-link:hover {
    color: var(--secondary-dark);
}

.nav-link:hover i {
    transform: translateY(-2px) scale(1.1);
}

.nav-link.active {
    color: white !important;
    background: var(--primary-green);
    box-shadow: var(--shadow-green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn {
    width: 46px;
    height: 46px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.top-nav.scrolled .nav-btn {
    background: rgba(0, 0, 0, 0.03);
    color: var(--secondary-dark);
}

.nav-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-4px) rotate(5deg);
    box-shadow: var(--shadow-green);
}

.top-nav.scrolled .nav-btn:hover {
    background: var(--primary-green);
    color: white;
}

.user-btn {
    width: auto;
    padding: 0 8px 0 16px;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-dark), #1e293b);
    color: white;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border: none;
    background: transparent;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: var(--transition-smooth);
}

.top-nav.scrolled .mobile-menu-btn {
    color: var(--secondary-dark);
}

/* Hamburger Animation */
.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 0.5px;
    background: var(--secondary-dark);
    margin: 3px auto;
    transition: var(--transition-smooth);
    border-radius: 10px;
    transform-origin: center;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* ========================================
   SIDEBAR - PREMIUM RE-DESIGN
======================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    box-shadow: 20px 0 80px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    visibility: hidden;
    /* Controlled by GSAP */
}

.sidebar-header {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: white;
    z-index: 5;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.sidebar-brand-text {
    font-weight: 800;
}

.sidebar-brand-text .brand-florian {
    color: var(--secondary-dark);
}

.sidebar-brand-text .brand-bd {
    color: var(--primary-green);
}

.sidebar-brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.sidebar-close {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--bg-soft);
    border-radius: 14px;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sidebar-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

.sidebar-search {
    margin: 0 40px 30px;
    padding: 16px 24px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.sidebar-search:focus-within {
    background: white;
    border-color: var(--primary-green);
    box-shadow: var(--shadow-green);
}

.sidebar-search i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.sidebar-search input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    color: var(--secondary-dark);
    font-family: inherit;
    font-weight: 500;
}

.sidebar-content {
    flex: 1;
    padding: 0 40px 40px;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title::after {
    content: '';
    height: 1px;
    background: linear-gradient(to right, rgba(0, 166, 81, 0.2), transparent);
    flex: 1;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 4px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 14px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.sidebar-menu a i {
    width: 24px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.sidebar-menu a:hover {
    background: white;
    color: var(--primary-green);
    border-color: rgba(0, 166, 81, 0.1);
    transform: translateX(8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.sidebar-menu a:hover i {
    transform: scale(1.2);
}

.sidebar-menu a.active {
    background: var(--primary-green);
    color: white;
    box-shadow: var(--shadow-green);
}

.sidebar-footer {
    padding: 40px;
    background: var(--bg-soft);
    border-top: 1px solid #f1f5f9;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: white;
    border-radius: 14px;
    text-decoration: none;
    color: var(--secondary-dark);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.quick-contact:hover {
    transform: translateY(-3px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.quick-contact i {
    font-size: 1.1rem;
    color: var(--primary-green);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.main-wrapper {
    padding-top: var(--nav-height);
    min-height: 100vh;
}

/* ========================================
   RESPONSIVE NAV & SIDEBAR
======================================== */
@media (max-width: 1024px) {
    .nav-center {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .nav-container {
        padding: 0 20px;
        gap: 15px;
    }

    .brand-text {
        font-size: 1.4rem;
    }

    .brand-logo {
        width: 60px;
        height: 60px;
    }

    .brand-logo img {
        filter: none;
    }

    .nav-actions {
        gap: 10px;
    }

    .nav-btn:not(.mobile-menu-btn) {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        background: transparent;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
    }

    .sidebar {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 360px) {
    .brand-text {
        font-size: 1.1rem;
    }

    .nav-container {
        padding: 0 10px;
    }
}

/* --- HEADER --- */
.faq-header {
    background: #008f45;
    padding: 160px 20px 180px;
    color: white;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 0%);
    overflow: hidden;
    text-align: center;
}

.header-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(60px);
    z-index: 5;
}

.header-bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: blobFloat 15s infinite alternate;
}


.header-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

/* Already have .info-tag further down, let's just make sure it applies correctly in the header context */
.faq-header .info-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.type-cursor {
    animation: blink 0.8s infinite;
    color: var(--primary-light);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* --- SEARCH BAR --- */
.search-container {
    max-width: 700px;
    margin: -40px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.search-wrapper {
    background: var(--bg-light);
    border-radius: 500px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 166, 81, 0.1);
}

.search-wrapper i {
    color: var(--primary-green);
    margin: 0 15px;
    font-size: 1.2rem;
}

.search-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    font-family: inherit;
    color: var(--primary-dark);
}

/* --- CATEGORY TABS --- */
.category-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding: 0 20px;
}

.category-pill {
    padding: 12px 28px;
    background: var(--bg-light);
    border-radius: 500px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-pill i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.category-pill:hover {
    transform: translateY(-3px);
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(0, 166, 81, 0.02);
}

.category-pill.active {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 166, 81, 0.4);
    border-color: var(--primary-green);
}

.category-pill.active i {
    opacity: 1;
}

/* --- HOW IT WORKS --- */
.how-it-works {
    padding: 60px 20px 100px;
}

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

.info-header {
    text-align: center;
    margin-bottom: 60px;
}

.info-tag {
    background: rgba(0, 166, 81, 0.1);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 500px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.info-header h2 {
    font-size: 2.5rem;
    color: #252525;
    font-weight: 800;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-soft);
    color: #999999;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: var(--primary-green);
    color: white;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- BOTANICAL GUIDE --- */
.botanical-guide {
    background: var(--bg-light);
    padding: 100px 20px;
    will-change: transform, opacity;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.guide-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-info {
    flex: 1.2;
}

.guide-info h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.guide-info>p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.light-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.light-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.light-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 5px;
}

.light-item h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.light-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.guide-visual {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.guide-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- BIOLOGICAL IMPACT --- */
.biological-impact {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 20px;
    color: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.impact-stat .stat-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 10px;
}

.impact-stat p {
    font-size: 1.1rem;
    opacity: 0.7;
    font-weight: 500;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .guide-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .light-item {
        flex-direction: column;
        align-items: center;
    }
}

/* --- FAQ GRID --- */
.faq-container {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.faq-section {
    display: none;
    /* Controlled by JS */
}

.faq-section.active {
    display: block !important;
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #252525;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title i {
    width: 45px;
    height: 45px;
    background: rgba(0, 166, 81, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.section-title::after {
    content: '';
    height: 1px;
    background: linear-gradient(to right, #e2e8f0, transparent);
    flex: 1;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    will-change: transform, box-shadow;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 850px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 166, 81, 0.2);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question h3 i {
    font-size: 0.9rem;
    color: var(--primary-green);
    opacity: 0.6;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-green);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--primary-green);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    background: #fafafa;
}

.faq-answer-inner {
    padding: 0 30px 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Controlled by GSAP */

/* --- NO RESULTS --- */
.no-results {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin: 40px 0;
}

.no-results i {
    font-size: 4rem;
    color: #e2e8f0;
    margin-bottom: 25px;
    display: block;
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-muted);
}

/* --- FOOTER CTA --- */
.contact-cta {
    background: white;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.contact-cta .cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
}

.contact-cta p {
    color: var(--text-muted);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.btn-contact {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 500px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 166, 81, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 166, 81, 0.3);
}

/* ========================================
   SUPER ATTRACTIVE FOOTER
======================================== */
.super-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    margin-top: -1px;
    color: white;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.footer-wave-svg {
    width: 100%;
    height: 80px;
    display: block;
}

.footer-main {
    position: relative;
    padding-top: 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

/* Brand Column */
.footer-brand-col {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .brand-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-logo .brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo .logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.footer-logo .logo-text .brand-florian {
    color: white;
}

.footer-logo .logo-text .brand-bd {
    color: var(--primary-green);
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.social-link:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 166, 81, 0.35);
}

.social-link:hover::before {
    left: 100%;
}

/* Footer Columns */
.footer-col {
    padding-top: 10px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: white;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-links a:hover i {
    transform: translateX(4px);
}

/* Contact Items */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(0, 166, 81, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-text {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.contact-text a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-green);
}

/* Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

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

.input-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 166, 81, 0.15);
}

.input-wrapper input {
    flex: 1;
    padding: 14px 18px;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
}

.input-wrapper input::placeholder {
    color: #64748b;
}

.submit-btn {
    padding: 14px 20px;
    background: var(--primary-green);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #008f45;
}

.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
}

.trust-badges .badge i {
    color: var(--primary-green);
}

/* Payment Methods */
.payment-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 30px;
}

.payment-header {
    text-align: center;
    margin-bottom: 20px;
}

.payment-header span {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.payment-card i {
    font-size: 1.3rem;
}

.payment-card:hover {
    background: rgba(0, 166, 81, 0.15);
    color: white;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #64748b;
    font-size: 0.9rem;
}

.copyright p strong {
    color: white;
}

.copyright p i {
    color: #ef4444;
    margin: 0 4px;
}

.legal-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.legal-links a::after {
    content: '|';
    position: absolute;
    right: -15px;
    color: #334155;
}

.legal-links a:last-child::after {
    display: none;
}

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

/* ========================================
   FOOTER ANIMATIONS
======================================== */

/* Floating particles effect (via pseudo-elements) */
.super-footer::before,
.super-footer::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.super-footer::before {
    background: rgba(0, 166, 81, 0.1);
    top: 10%;
    left: -5%;
    animation: float 8s ease-in-out infinite;
}

.super-footer::after {
    background: rgba(0, 100, 50, 0.08);
    bottom: 20%;
    right: -5%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

/* Staggered reveal animation for footer columns */
.footer-brand-col,
.footer-col {
    opacity: 0;
    transform: translateY(30px);
    animation: footerReveal 0.6s ease forwards;
}

.footer-brand-col {
    animation-delay: 0.1s;
}

.footer-col:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-col:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-col:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-col:nth-child(5) {
    animation-delay: 0.5s;
}

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

/* Social links pulse on hover */
.social-link {
    position: relative;
    overflow: hidden;
}

/* Newsletter input focus animation */
.newsletter-form input {
    transition: all 0.3s ease;
}

/* Payment card hover glow */
.payment-card {
    position: relative;
}

.payment-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-green), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-card:hover::before {
    opacity: 0.1;
}

/* ========================================
   FOOTER RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-brand-col {
        grid-column: span 3;
        text-align: center;
        padding-right: 0;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }

    .footer-brand-col {
        grid-column: span 1;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .payment-methods {
        gap: 10px;
    }

    .payment-card {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

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

    .legal-links {
        justify-content: center;
        gap: 15px;
    }

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

/* --- HORIZONTAL PINNED --- */
.horizontal-pinned {
    position: relative;
    width: 100%;
    background: #f8fafc;
}

.horizontal-sticky {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.horizontal-container {
    display: flex;
    height: 100vh;
    will-change: transform;
}

.horizontal-slide {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10vw;
    position: relative;
}

.slide-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    width: 100%;
    height: 70vh;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

.slide-content .slide-num {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 166, 81, 0.05);
    position: absolute;
    top: -40px;
    right: 40px;
    pointer-events: none;
}

.slide-info {
    flex: 1;
}

.slide-info h2 {
    font-size: 4rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.slide-info p {
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.slide-visual {
    flex: 1 1 0%;
    height: 100%;
    will-change: transform;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.slide-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.horizontal-slide:hover .slide-visual img {
    transform: scale(1.05);
}

/* Horizontal Progress Bar */
.horizontal-progress-wrap {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    z-index: 20;
}

.horizontal-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary-green);
    box-shadow: 0 0 10px var(--primary-green);
}

/* --- PARTNER MARQUEE --- */
.partner-marquee {
    background: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    z-index: 5;
    display: block !important;
    visibility: visible !important;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-content span {
    font-size: 1.2rem;
    font-weight: 800;
    color: #94a3b8;
    margin: 0 60px;
    letter-spacing: 6px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.marquee-content span:hover {
    color: var(--primary-green);
    transform: scale(1.05);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* --- CARE TABLE --- */
.care-table-wrapper {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow-x: auto;
}

.care-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}

.care-table th {
    background: var(--bg-soft);
    padding: 15px 20px;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.care-table td {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-main);
    font-size: 0.95rem;
}

.care-table tr:last-child td {
    border-bottom: none;
}

.care-table strong {
    color: var(--primary-green);
}

/* --- RESPONSIVE TABLET --- */
@media (max-width: 1024px) {
    .slide-content {
        flex-direction: column;
        padding: 40px;
        gap: 30px;
        height: auto;
        text-align: center;
    }

    .slide-visual {
        width: 100%;
        height: 300px;
    }

    .slide-info h2 {
        font-size: 2.5rem;
    }

    .slide-content .slide-num {
        font-size: 5rem;
        top: 0;
        right: 20px;
    }
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {

    /* Header & General Layout */
    .faq-header {
        padding: 60px 20px 100px;
        clip-path: ellipse(200% 100% at 50% 0%);
    }

    .faq-header h1 {
        font-size: 2.2rem;
    }

    .faq-header p {
        font-size: 1rem;
    }

    .search-container {
        margin-top: -30px;
        margin-bottom: 40px;
    }

    .search-wrapper {
        padding: 5px 10px;
    }

    /* Swipeable Category Pills */
    .category-pills {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 15px;
        margin-bottom: 30px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .category-pills::-webkit-scrollbar {
        display: none;
    }

    .category-pill {
        padding: 10px 20px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    /* Content Spacing */
    .faq-container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .section-title i {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* FAQ Items */
    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer-inner {
        padding: 0 20px 20px;
        font-size: 0.9rem;
    }

    /* Horizontal Pinned - Mobile: Stack vertically, no animation */
    .horizontal-pinned {
        background: #f8fafc;
        padding: 40px 0;
    }

    .horizontal-sticky {
        height: auto;
        display: block;
        overflow: visible;
    }

    .horizontal-container {
        display: block;
        height: auto;
    }

    .horizontal-slide {
        width: 100%;
        height: auto;
        padding: 0 15px;
        margin-bottom: 20px;
        display: block;
    }

    .slide-content {
        height: auto;
        padding: 30px 20px;
        border-radius: 20px;
        gap: 20px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    }

    .slide-content .slide-num {
        font-size: 3rem;
        top: 5px;
        right: 15px;
    }

    .slide-info h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .slide-info p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .slide-visual {
        width: 100%;
        height: 200px;
        border-radius: 16px;
        margin-top: 10px;
    }

    .horizontal-progress-wrap {
        display: none;
    }

    /* Impact Stats */
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .stat-num {
        font-size: 2rem;
    }

    /* Footer CTA */
    .contact-cta {
        padding: 60px 20px;
    }

    .contact-cta h2 {
        font-size: 1.8rem;
    }

    .btn-contact {
        width: 100%;
        text-align: center;
    }

    /* Partner Marquee Mobile */
    .marquee-content span {
        font-size: 0.9rem;
        margin: 0 20px;
        letter-spacing: 2px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .faq-header h1 {
        font-size: 1.8rem;
    }

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

    .slide-visual {
        height: 160px;
    }

    .slide-info h2 {
        font-size: 1.3rem;
    }

    .marquee-content span {
        font-size: 0.8rem;
        margin: 0 15px;
        letter-spacing: 1px;
    }

    .care-table-wrapper {
        padding: 15px;
    }

    .care-table th,
    .care-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}