: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);
    --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%;
    scroll-behavior: smooth;
}

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;
}

.breadcrumb {
    padding: 10px 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    background: rgb(0 143 69);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

.visible-h1 {
    font-size: clamp(2.4rem, 7vw, 4.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.tree-testimonials {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
    position: relative;
}

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

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.12);
}

.tc-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: #f59e0b;
    font-size: 0.9rem;
}

.tc-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    flex: 1;
    font-style: italic;
    margin-bottom: 20px;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.tc-avatar {
    font-size: 2.2rem;
    color: var(--primary-green);
    opacity: 0.3;
    line-height: 1;
}

.tc-info {
    display: flex;
    flex-direction: column;
}

.tc-info strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-dark);
}

.tc-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 1000px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   HOW IT WORKS SECTION
======================================== */
.tree-how-it-works {
    padding: 100px 2rem;
    background: white;
    position: relative;
}

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

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

.hiw-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.hiw-step {
    text-align: center;
    flex: 1;
    max-width: 260px;
    padding: 40px 25px 35px;
    background: var(--bg-soft);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.hiw-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.12);
}

.hiw-step-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(0, 166, 81, 0.06);
    line-height: 1;
    pointer-events: none;
}

.hiw-step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.18));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: var(--primary-green);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.hiw-step:hover .hiw-step-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(0, 166, 81, 0.25);
}

.hiw-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-dark);
}

.hiw-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.hiw-step-connector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 6px;
    margin-top: 80px;
    flex-shrink: 0;
}

.hiw-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.15);
    flex-shrink: 0;
}

.hiw-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.15), rgba(0, 166, 81, 0.08));
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .hiw-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hiw-step {
        max-width: 400px;
        width: 100%;
    }

    .hiw-step-connector {
        margin-top: 0;
        transform: rotate(90deg);
        padding: 10px 0;
    }
}

@media (max-width: 560px) {
    .hiw-step {
        max-width: 100%;
    }
}

/* ========================================
   SEASONAL PICKS SECTION
======================================== */
.tree-seasonal {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #0a3d1a 0%, #065f46 50%, #047857 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.tree-seasonal .seasonal-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.seasonal-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.seasonal-header .section-label {
    color: rgba(255, 255, 255, 0.6);
}

.seasonal-header .section-title {
    color: white;
}

.seasonal-header .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.seasonal-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.seasonal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(255, 255, 255, 0.03) 100%);
    pointer-events: none;
}

.seasonal-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.sc-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.sc-summer .sc-badge {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.sc-rainy .sc-badge {
    background: rgba(96, 165, 250, 0.2);
    color: #93c5fd;
}

.sc-winter .sc-badge {
    background: rgba(167, 139, 250, 0.2);
    color: #c4b5fd;
}

.sc-all-year .sc-badge {
    background: rgba(52, 211, 153, 0.2);
    color: #6ee7b7;
}

.seasonal-card .sc-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    opacity: 0.6;
}

.sc-summer .sc-icon {
    color: #fbbf24;
}

.sc-rainy .sc-icon {
    color: #93c5fd;
}

.sc-winter .sc-icon {
    color: #c4b5fd;
}

.sc-all-year .sc-icon {
    color: #6ee7b7;
}

.seasonal-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.seasonal-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 16px;
}

.sc-meta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.sc-meta span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 5px;
}

.sc-meta span i {
    font-size: 0.8rem;
    opacity: 0.6;
}

@media (max-width: 900px) {
    .seasonal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   SUSTAINABILITY SECTION — COMPLETE REDESIGN
======================================== */
.tree-sustainability {
    padding: 0 2rem;
    background: linear-gradient(180deg, #0a2e1a 0%, #0d3d22 30%, #0a2e1a 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.tree-sustainability::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 200, 98, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 166, 81, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.tree-sustainability::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.sus-wave-top,
.sus-wave-bottom {
    position: relative;
    z-index: 1;
    line-height: 0;
    pointer-events: none;
}

.sus-wave-top svg,
.sus-wave-bottom svg {
    width: 0%;
    height: 60px;
    display: block;
}

.sus-wave-top svg path {
    fill: var(--bg-soft);
}

.sus-wave-bottom svg path {
    fill: var(--bg-soft);
}

.sus-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 20px 0 80px;
}

.sus-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.sus-header-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 200, 98, 0.12);
    border: 1px solid rgba(0, 200, 98, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #00e068;
    animation: susPulse 3s ease-in-out infinite;
}

@keyframes susPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 224, 104, 0.2);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(0, 224, 104, 0);
    }
}

.sus-header .section-label {
    color: rgba(255, 255, 255, 0.5);
}

.sus-header .section-title {
    color: white;
}

.sus-header .section-description {
    color: rgba(255, 255, 255, 0.6);
}

/* --- Floating Leaf Particles --- */
.sus-bg-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.sus-leaf {
    position: absolute;
    font-size: 1rem;
    color: rgba(0, 224, 104, 0.08);
    animation: susLeafFloat 18s ease-in-out infinite;
}

.sus-lf-1 {
    top: 10%;
    left: 5%;
    font-size: 1.4rem;
    animation-delay: 0s;
}

.sus-lf-2 {
    top: 35%;
    left: 8%;
    font-size: 1.8rem;
    animation-delay: -4s;
}

.sus-lf-3 {
    top: 55%;
    right: 10%;
    font-size: 1.2rem;
    animation-delay: -8s;
}

.sus-lf-4 {
    top: 75%;
    left: 15%;
    font-size: 1.6rem;
    animation-delay: -2s;
}

.sus-lf-5 {
    top: 20%;
    right: 5%;
    font-size: 1rem;
    animation-delay: -12s;
}

.sus-lf-6 {
    top: 65%;
    right: 20%;
    font-size: 2rem;
    animation-delay: -6s;
}

@keyframes susLeafFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.08;
    }

    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.2);
        opacity: 0.15;
    }
}

/* --- Scoreboard with SVG Ring Counters --- */
.sus-scoreboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 70px;
}

.sus-score-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 35px 20px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.sus-score-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 224, 104, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sus-score-card:hover::before {
    opacity: 1;
}

.sus-score-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 224, 104, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sus-ring-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 18px;
}

.sus-ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.sus-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 6;
}

.sus-ring-progress {
    fill: none;
    stroke: url(#susRingGradient);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.sus-ring-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    font-weight: 900;
    color: #00e068;
    line-height: 1;
}

.sus-ring-suffix {
    position: absolute;
    top: 32%;
    right: 18px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(0, 224, 104, 0.5);
}

.sus-score-label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.sus-score-note {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Eco Initiatives --- */
.sus-initiatives {
    margin-bottom: 70px;
}

.sus-init-header {
    text-align: center;
    margin-bottom: 50px;
}

.sus-init-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.sus-init-header h3 span {
    color: #00e068;
}

.sus-init-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.sus-init-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sus-init-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.sus-init-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 224, 104, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sus-init-card:hover::after {
    opacity: 1;
}

.sus-init-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 224, 104, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.sus-init-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(0, 224, 104, 0.08);
    line-height: 1;
    flex-shrink: 0;
    margin-top: -4px;
    min-width: 44px;
}

.sus-init-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 200, 98, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #00e068;
    flex-shrink: 0;
    transition: all 0.45s ease;
}

.sus-init-card:hover .sus-init-icon {
    background: linear-gradient(135deg, #00e068, #00a651);
    color: white;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(0, 224, 104, 0.2);
}

.sus-init-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.sus-init-body p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 12px;
}

.sus-init-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00e068;
}

.sus-init-stat i {
    font-size: 0.75rem;
}

/* --- Green Certifications --- */
.sus-cert-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.sus-cert-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 60px;
    padding: 14px 28px 14px 18px;
    transition: all 0.4s ease;
}

.sus-cert-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 224, 104, 0.15);
    transform: translateY(-3px);
}

.sus-cert-icon {
    width: 38px;
    height: 38px;
    background: rgba(0, 200, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #00e068;
    flex-shrink: 0;
}

.sus-cert-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1.3;
}

.sus-cert-year {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    display: block;
}

@media (max-width: 1000px) {
    .sus-scoreboard {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sus-init-grid {
        grid-template-columns: 1fr;
    }

    .sus-scoreboard {
        gap: 16px;
    }
}

@media (max-width: 560px) {
    .sus-scoreboard {
        grid-template-columns: 1fr;
    }

    .sus-cert-badge {
        width: 100%;
        border-radius: 16px;
    }
}

/* ========================================
   GIFT A TREE SECTION — COMPLETE REDESIGN
======================================== */
.tree-gifting {
    padding: 90px 2rem 80px;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(251, 191, 36, 0.02) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 166, 81, 0.015) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 70%),
        linear-gradient(180deg, #fefce8 0%, #fffbeb 30%, #fef3c7 70%, #fefce8 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.tree-gifting::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 90%, rgba(0, 166, 81, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 85% 10%, rgba(251, 191, 36, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

/* --- Sparkle Particles --- */
.gift-sparkle-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.gift-spark {
    position: absolute;
    font-size: 1rem;
    color: rgba(251, 191, 36, 0.12);
    animation: giftSparkle 6s ease-in-out infinite;
}

.gs-1 {
    top: 8%;
    left: 10%;
    font-size: 1.4rem;
    animation-delay: 0s;
}

.gs-2 {
    top: 25%;
    right: 15%;
    font-size: 1.1rem;
    animation-delay: -1.5s;
}

.gs-3 {
    top: 55%;
    left: 5%;
    font-size: 1.6rem;
    animation-delay: -3s;
}

.gs-4 {
    top: 70%;
    right: 8%;
    font-size: 0.9rem;
    animation-delay: -4.5s;
}

.gs-5 {
    top: 40%;
    left: 50%;
    font-size: 1.2rem;
    animation-delay: -2s;
}

.gs-6 {
    top: 85%;
    left: 30%;
    font-size: 1rem;
    animation-delay: -5s;
}

@keyframes giftSparkle {

    0%,
    100% {
        opacity: 0.08;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 0.25;
        transform: scale(1.3) rotate(180deg);
    }
}

.gift-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- Ribbon Bar --- */
.gift-ribbon-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.gift-ribbon-left,
.gift-ribbon-right {
    display: block;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
}

.gift-ribbon-right {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.2), transparent);
}

.gift-ribbon-bow {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    animation: giftBowPulse 3s ease-in-out infinite;
}

@keyframes giftBowPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
    }
}

/* --- Header --- */
.gift-header {
    text-align: center;
    margin-bottom: 55px;
}

.gift-header .section-description {
    max-width: 650px;
}

/* --- Gift Packages (Cards styled as gift boxes) --- */
.gift-packages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.gift-box {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.gift-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.12);
}

.gift-box-popular {
    border-color: rgba(251, 191, 36, 0.2);
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.06), 0 0 0 1px rgba(251, 191, 36, 0.1);
}

.gift-box-popular:hover {
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 30px 70px rgba(251, 191, 36, 0.08), 0 0 0 1px rgba(251, 191, 36, 0.2);
}

/* --- Gift Box Ribbon Top --- */
.gift-box-ribbon {
    height: 48px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-box-popular .gift-box-ribbon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.gift-box-bow {
    position: relative;
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gbb-l,
.gbb-r {
    position: absolute;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50% 50% 50% 0;
    top: 2px;
}

.gbb-l {
    left: 2px;
    transform: rotate(-30deg);
}

.gbb-r {
    right: 2px;
    transform: rotate(60deg);
}

.gbb-c {
    width: 10px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    position: relative;
    z-index: 2;
    top: 4px;
}

/* --- Gift Box Content --- */
.gift-box-content {
    padding: 25px 25px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gift-box-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 3px 12px;
    background: rgba(251, 191, 36, 0.08);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d97706;
    margin-bottom: 12px;
}

.gift-box-content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary-dark);
    margin-bottom: 6px;
}

.gift-box-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 14px;
}

.gift-box-content>p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.gift-box-features {
    list-style: none;
    margin-bottom: 22px;
}

.gift-box-features li {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.gift-box-features li i {
    color: var(--primary-green);
    font-size: 0.7rem;
    width: 16px;
    flex-shrink: 0;
}

.gift-box-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--bg-soft);
    border-radius: 10px;
    color: var(--secondary-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid transparent;
    margin-top: auto;
}

.gift-box-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(0, 166, 81, 0.2);
}

.gift-box-popular .gift-box-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: white;
}

.gift-box-popular .gift-box-btn:hover {
    box-shadow: 0 12px 30px rgba(0, 166, 81, 0.35);
    transform: translateX(4px);
}

/* --- Badges --- */
.gift-box-badge {
    position: absolute;
    top: 38px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d97706;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gift-box-badge-popular {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

/* --- Gift Personalizer --- */
.gift-personalizer {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 80px;
    padding: 20px 30px 20px 24px;
    margin-bottom: 35px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.gift-personalizer:hover {
    border-color: rgba(251, 191, 36, 0.15);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.06);
}

.gift-personalizer-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(251, 191, 36, 0.18));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.gift-personalizer-text {
    flex: 1;
}

.gift-personalizer-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 2px;
}

.gift-personalizer-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.gift-personalizer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.25);
}

.gift-personalizer-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.35);
}

/* --- CTA Strip --- */
.gift-cta-strip {
    text-align: center;
    padding: 24px 30px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 80px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.gift-cta-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.gift-cta-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gift-cta-features span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.gift-cta-features span i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

.gift-cta-divider {
    color: rgba(0, 0, 0, 0.08) !important;
    font-size: 0.8rem !important;
}

@media (max-width: 1100px) {
    .gift-packages {
        grid-template-columns: repeat(2, 1fr);
    }

    .gift-personalizer {
        border-radius: 24px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .gift-packages {
        gap: 20px;
    }

    .gift-personalizer {
        padding: 20px;
    }

    .gift-cta-strip {
        border-radius: 24px;
    }
}

@media (max-width: 560px) {
    .gift-packages {
        grid-template-columns: 1fr;
    }

    .gift-ribbon-left,
    .gift-ribbon-right {
        width: 60px;
    }
}

/* ========================================
   PARTNERS SECTION
======================================== */
.tree-partners {
    padding: 100px 2rem;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 166, 81, 0.02) 0%, transparent 60%),
        white;
    position: relative;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.partners-header {
    margin-bottom: 60px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.partner-card {
    background: var(--bg-soft);
    border-radius: 20px;
    padding: 35px 25px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.12);
}

.partner-card .pc-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.18));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.3rem;
    color: var(--primary-green);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.partner-card:hover .pc-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(0, 166, 81, 0.25);
}

.partner-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-dark);
}

.partner-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 166, 81, 0.3);
}

.partner-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 166, 81, 0.4);
}

@media (max-width: 900px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   RESOURCES & APP SECTION
======================================== */
.tree-resources {
    padding: 100px 2rem;
    background:
        radial-gradient(ellipse at 25% 20%, rgba(0, 166, 81, 0.015) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 80%, rgba(56, 189, 248, 0.01) 0%, transparent 50%),
        linear-gradient(180deg, #fcfbf7 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.resources-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.res-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.res-orb.ra {
    width: 450px;
    height: 450px;
    top: -120px;
    left: -80px;
    background: rgba(0, 166, 81, 0.03);
    animation: careFloat 25s ease-in-out infinite;
}

.res-orb.rb {
    width: 350px;
    height: 350px;
    bottom: -100px;
    right: -60px;
    background: rgba(56, 189, 248, 0.03);
    animation: careFloat 20s ease-in-out infinite reverse;
}

.resources-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.resource-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.12);
}

.rc-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.18));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.3rem;
    color: var(--primary-green);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.resource-card:hover .rc-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(0, 166, 81, 0.25);
}

.resource-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-dark);
}

.resource-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.resources-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: var(--secondary-dark);
    border-radius: 14px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.app-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #1e293b;
}

.app-badge i {
    font-size: 1.8rem;
}

.app-badge strong {
    font-weight: 700;
}

@media (max-width: 900px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   TREE CROSSLINKS
======================================== */
.tree-crosslinks {
    padding: 60px 20px;
    background: var(--bg-soft);
}

.crosslinks-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.crosslink-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.crosslink-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-green);
}

.crosslink-card i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.crosslink-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.crosslink-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   TOP NAVIGATION
======================================== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: #009046;
    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: #00703a;
}

.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: #fff;
    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: #006b32;
    box-shadow: 0 10px 25px -5px rgba(0, 107, 50, 0.3);
}

.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;
    text-decoration: none;
}

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

.nav-btn:hover {
    background: #006b32;
    color: white;
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 10px 25px -5px rgba(0, 107, 50, 0.3);
}

.top-nav.scrolled .nav-btn:hover {
    background: #006b32;
    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);
}

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

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    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
======================================== */
.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;
}

.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 img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.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-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-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 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: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-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 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;
}

/* ========================================
   TREE HERO HEADER
======================================== */
.policy-header.tree-hero {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #0a5e30 100%);
    padding: 180px 20px 220px;
    color: white;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 0%);
    overflow: hidden;
    text-align: center;
    z-index: 10;
}

.policy-header.tree-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

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

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

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

.policy-header.tree-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(248, 250, 252, 0.4));
    pointer-events: none;
}

/* ========================================
   TREE INTRO / ABOUT SECTION
======================================== */
.tree-intro-section {
    padding: 80px 2rem 100px;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 166, 81, 0.015) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(56, 189, 248, 0.01) 0%, transparent 50%),
        var(--bg-soft);
    position: relative;
    overflow: hidden;
}

.tree-intro-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.tree-intro-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
    position: relative;
}

.tree-intro-text {
    position: relative;
    padding: 35px 45px;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    margin-top: 30px;
    text-align: left;
}

.tree-intro-text::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    left: 22px;
    font-size: 5rem;
    line-height: 1;
    color: rgba(0, 166, 81, 0.06);
    font-family: Georgia, serif;
    pointer-events: none;
}

.tree-intro-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 18px;
}

.tree-intro-text p:last-child {
    margin-bottom: 0;
}

.tree-intro-text strong {
    color: var(--secondary-dark);
    font-weight: 600;
}

.tree-intro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tree-intro-item {
    background: white;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.tree-intro-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 166, 81, 0.06);
    border-color: rgba(0, 166, 81, 0.1);
}

.tree-intro-item i {
    display: block;
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 14px;
}

.tree-intro-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 8px;
}

.tree-intro-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .tree-intro-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 560px) {
    .tree-intro-section {
        padding: 60px 1.25rem 70px;
    }

    .tree-intro-text {
        padding: 25px 20px;
    }

    .tree-intro-text p {
        font-size: 0.95rem;
    }

    .tree-intro-grid {
        grid-template-columns: 1fr;
    }
}

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

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.story-ledger {
    position: absolute;
    top: 15px;
    left: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 100;
    pointer-events: none;
}

.ledger-tag {
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.ledger-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 100px;
    box-shadow: 0 0 8px var(--primary-light);
}

.ledger-tag.impact {
    animation: ledgerBuild 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ledgerBuild {
    0% {
        transform: translateX(-30px) scale(0.8);
        opacity: 0;
        letter-spacing: 10px;
        filter: blur(10px);
    }

    40% {
        opacity: 0.5;
        letter-spacing: 5px;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
        letter-spacing: 2px;
        filter: blur(0);
    }
}

@media (max-width: 768px) {
    .tree-hero h1 {
        white-space: normal;
        font-size: clamp(1.8rem, 5vw, 2.8rem);
    }
}

/* ========================================
   GLOBAL ATTRACTIVENESS ENHANCEMENTS
======================================== */
.tree-categories-section,
.tree-benefits-section,
.care-section,
.tree-knowledge-section,
.faq-section-tree,
.tree-testimonials,
.tree-how-it-works,
.tree-sustainability,
.tree-gifting,
.tree-partners,
.tree-resources,
.stats-strip {
    position: relative;
}

.tree-categories-section::before,
.tree-benefits-section::before,
.care-section::before,
.tree-knowledge-section::before,
.faq-section-tree::before,
.tree-testimonials::before,
.tree-how-it-works::before,
.tree-partners::before,
.tree-resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    border-radius: 3px;
    opacity: 0.3;
}

img {
    -webkit-font-smoothing: antialiased;
    image-rendering: auto;
}

::selection {
    background: rgba(0, 166, 81, 0.2);
    color: var(--secondary-dark);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 166, 81, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 166, 81, 0.4);
}

/* ========================================
   SECTION SHARED STYLES
======================================== */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #00703a;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary, var(--secondary-dark));
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary-green);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-green), #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   STATS STRIP - Premium
======================================== */
.stats-strip {
    padding: 60px 2rem;
    background: linear-gradient(135deg, var(--primary-dark), #0a3d1a);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.stats-strip-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stats-strip-item {
    text-align: center;
    color: white;
    padding: 10px;
}

.stats-strip-item .ssi-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #00e068;
    display: block;
    line-height: 1.2;
}

.stats-strip-item .ssi-label {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 500;
    display: block;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-strip-item .ssi-icon {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .stats-strip-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 560px) {
    .stats-strip-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stats-strip-item .ssi-number {
        font-size: 1.8rem;
    }
}

/* ========================================
   TREE CATEGORIES SECTION
======================================== */
.tree-categories-section {
    padding: 100px 2rem;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 166, 81, 0.02) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(56, 189, 248, 0.015) 0%, transparent 55%),
        var(--bg-soft);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.tree-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tree-cat-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px 35px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.tree-cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), #38bdf8);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 0;
}

.tree-cat-card:hover::before {
    opacity: 1;
}

.tree-cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.12);
}

.tcc-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.18));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary-green);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
}

.tree-cat-card:hover .tcc-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: white;
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 12px 28px rgba(0, 166, 81, 0.25);
}

.tcc-ring {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(0, 166, 81, 0.08);
    animation: tccRing 3.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes tccRing {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateX(-50%) scale(1.4);
        opacity: 0;
    }
}

.tree-cat-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.tree-cat-card .tcc-count {
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.tree-cat-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

/* ========================================
   TREE BENEFITS SECTION
======================================== */
.tree-benefits-section {
    padding: 100px 2rem;
    background: white;
    position: relative;
}

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

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tree-benefit-card {
    background: var(--bg-soft);
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.tree-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), transparent);
    opacity: 0;
    transition: opacity 0.4s ease, left 0.4s ease, right 0.4s ease;
    border-radius: 0 0 2px 2px;
}

.tree-benefit-card:hover::before {
    opacity: 1;
    left: 0;
    right: 0;
}

.tree-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.12);
}

.tbc-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.3rem;
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.tree-benefit-card:hover .tbc-icon {
    background: var(--primary-green);
    color: white;
    transform: scale(1.05) rotate(-5deg);
}

.tree-benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-dark);
}

.tree-benefit-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

/* ========================================
   CARE GUIDE SECTION
======================================== */
.care-section {
    padding: 100px 2rem;
    background:
        radial-gradient(ellipse at 25% 20%, rgba(0, 166, 81, 0.015) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 80%, rgba(56, 189, 248, 0.01) 0%, transparent 50%),
        #ffffff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.care-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.care-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.care-orb.ca {
    width: 450px;
    height: 450px;
    top: -150px;
    left: -100px;
    background: rgba(0, 166, 81, 0.04);
    animation: careFloat 20s ease-in-out infinite;
}

.care-orb.cb {
    width: 350px;
    height: 350px;
    bottom: -120px;
    right: -80px;
    background: rgba(56, 189, 248, 0.03);
    animation: careFloat 22s ease-in-out infinite reverse;
}

@keyframes careFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.care-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.care-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.care-step {
    background: white;
    border-radius: 24px;
    padding: 40px 28px 35px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.care-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), #38bdf8);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 0;
}

.care-step:hover::before {
    opacity: 1;
}

.care-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.12);
}

.cs-number {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 166, 81, 0.05);
    line-height: 1;
    pointer-events: none;
}

.cs-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.18));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
}

.care-step:hover .cs-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: white;
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 12px 28px rgba(0, 166, 81, 0.25);
}

.care-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-dark);
    position: relative;
    z-index: 2;
}

.care-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .care-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

/* ========================================
   TREE KNOWLEDGE SECTION
======================================== */
.tree-knowledge-section {
    padding: 150px 2rem 170px;
    background:
        radial-gradient(ellipse at 15% 25%, rgba(0, 166, 81, 0.025) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 75%, rgba(180, 130, 80, 0.015) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 166, 81, 0.008) 0%, transparent 70%),
        linear-gradient(180deg, #fcfbf7 0%, #f8f7f1 40%, #f2f4ed 70%, #fcfbf7 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.tree-knowledge-section .knowledge-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.tree-knowledge-section .kn-gl {
    position: absolute;
    border-radius: 50%;
    filter: blur(200px);
    animation: knGlFloat 35s ease-in-out infinite alternate;
}

.tree-knowledge-section .kn-gl.kgl-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 166, 81, 0.03);
    top: 10%;
    left: -15%;
}

.tree-knowledge-section .kn-gl.kgl-2 {
    width: 500px;
    height: 500px;
    background: rgba(180, 130, 80, 0.025);
    bottom: 5%;
    right: -10%;
    animation-delay: -14s;
}

@keyframes knGlFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, -60px) scale(1.1);
    }
}

.tree-knowledge-section .kn-texture {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

.tree-knowledge-section .kn-edge-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 3%, rgba(0, 166, 81, 0.08) 15%, rgba(0, 166, 81, 0.08) 85%, transparent 97%);
}

.tree-knowledge-section .kn-edge-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 3%, rgba(0, 166, 81, 0.08) 15%, rgba(0, 166, 81, 0.08) 85%, transparent 97%);
}

.tree-knowledge-section .knowledge-container {
    max-width: fit-content;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tree-knowledge-section .knowledge-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.tree-knowledge-section .kh-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2rem;
}

.tree-knowledge-section .kh-ornament::before,
.tree-knowledge-section .kh-ornament::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.15));
}

.tree-knowledge-section .kh-ornament::after {
    background: linear-gradient(90deg, rgba(0, 166, 81, 0.15), transparent);
}

.tree-knowledge-section .kho-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: rgba(0, 166, 81, 0.2);
    letter-spacing: 2px;
}

.tree-knowledge-section .knowledge-header .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--secondary-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
}

.tree-knowledge-section .knowledge-header .section-title .text-gradient {
    background: linear-gradient(135deg, var(--primary-green), #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tree-knowledge-section .kn-header-sub {
    font-size: 0.92rem;
    color: #78716c;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
    font-weight: 400;
}

.tree-knowledge-section .kh-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.tree-knowledge-section .kh-sep-line {
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(0, 166, 81, 0.1);
}

.tree-knowledge-section .kh-sep-icon {
    font-size: 0.45rem;
    color: rgba(0, 166, 81, 0.15);
}

.tree-knowledge-section .kn-essay {
    position: relative;
}

.tree-knowledge-section .kn-essay::before {
    content: '';
    position: absolute;
    top: 0.3rem;
    left: 1.8rem;
    bottom: 0.3rem;
    width: 1px;
    background: linear-gradient(180deg,
            rgba(0, 166, 81, 0.1) 0%,
            rgba(0, 166, 81, 0.06) 40%,
            rgba(0, 166, 81, 0.02) 70%,
            transparent 100%);
}

.tree-knowledge-section .kn-essay::after {
    content: '\f06c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -0.2rem;
    left: 1.2rem;
    font-size: 0.85rem;
    color: rgba(0, 166, 81, 0.12);
    transform: translateX(-50%);
}

.tree-knowledge-section .kn-paragraph-card {
    position: relative;
    padding: 0 0 0 4.2rem;
    margin-bottom: 0;
    transition: all 0.5s ease;
}

.tree-knowledge-section .kn-pc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.tree-knowledge-section .kn-pc-tag::before {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
}

.tree-knowledge-section .kn-pc-text {
    font-size: 1rem;
    color: #57534e;
    line-height: 1.9;
    letter-spacing: 0.1px;
    min-height: 40px;
    font-weight: 400;
}

.tree-knowledge-section .kn-pc-text strong {
    color: #292524;
    font-weight: 600;
}

.tree-knowledge-section .kn-pc-text em {
    color: var(--primary-green);
    font-style: italic;
}

.tree-knowledge-section .kn-paragraph-card[data-idx="0"] .kn-pc-text::first-letter {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--secondary-dark);
    float: left;
    line-height: 0.8;
    margin: 0.15rem 0.4rem 0 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: -2px;
}

.tree-knowledge-section .kn-paragraph-card[data-idx="0"] .kn-pc-text::first-line {
    color: #292524;
    font-weight: 500;
}

.tree-knowledge-section .kn-typed {
    display: inline;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

.tree-knowledge-section .kn-cursor {
    display: inline;
    font-size: inherit;
    font-weight: 200;
    color: var(--primary-green);
    animation: knBlink 0.7s infinite;
    line-height: inherit;
    margin-left: 1px;
}

.tree-knowledge-section .kn-cursor.done {
    animation: none;
    opacity: 0;
}

@keyframes knBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.tree-knowledge-section .kn-typed strong {
    font-weight: 700;
    color: #1c1917;
    animation: knStyleIn 0.2s ease-out both;
}

.tree-knowledge-section .kn-typed em {
    font-style: italic;
    color: var(--primary-green);
    animation: knStyleIn 0.2s ease-out both;
}

@keyframes knStyleIn {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.tree-knowledge-section .kn-typed strong em,
.tree-knowledge-section .kn-typed em strong {
    font-weight: 700;
    font-style: italic;
}

.tree-knowledge-section .kn-paragraph-divider {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 1.75rem 0 1rem 4.2rem;
    position: relative;
    z-index: 1;
}

.tree-knowledge-section .kpd-line {
    display: block;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 166, 81, 0.12), transparent);
}

.tree-knowledge-section .kpd-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    color: rgba(0, 166, 81, 0.12);
    animation: kpdBob 4s ease-in-out infinite;
    transition: color 0.4s ease;
}

.tree-knowledge-section .kn-paragraph-divider:hover .kpd-icon {
    color: rgba(0, 166, 81, 0.25);
}

@keyframes kpdBob {

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

    50% {
        transform: translateY(3px);
    }
}

.tree-knowledge-section .kn-endmark {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 1.5rem;
    padding-right: 0.5rem;
}

.tree-knowledge-section .kn-endmark-line {
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.12));
}

.tree-knowledge-section .kn-endmark-icon {
    font-size: 0.65rem;
    color: rgba(0, 166, 81, 0.2);
    animation: knEndPulse 3s ease-in-out infinite;
}

@keyframes knEndPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.35;
    }
}

@media (max-width: 900px) {
    .tree-knowledge-section {
        padding: 100px 1.5rem 120px;
    }

    .tree-knowledge-section .knowledge-container {
        max-width: 100%;
    }

    .tree-knowledge-section .knowledge-header {
        margin-bottom: 3.5rem;
    }

    .tree-knowledge-section .knowledge-header .section-title {
        font-size: 1.7rem;
    }

    .tree-knowledge-section .kn-header-sub {
        font-size: 0.88rem;
    }

    .tree-knowledge-section .kn-essay::before {
        left: 1.4rem;
    }

    .tree-knowledge-section .kn-essay::after {
        left: 0.8rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .tree-knowledge-section {
        padding: 80px 1.25rem 100px;
    }

    .tree-knowledge-section .knowledge-header {
        margin-bottom: 3rem;
    }

    .tree-knowledge-section .knowledge-header .section-title {
        font-size: 1.4rem;
    }

    .tree-knowledge-section .kn-paragraph-card {
        padding: 0 0 0 3rem;
    }

    .tree-knowledge-section .kn-pc-text {
        font-size: 0.92rem;
    }

    .tree-knowledge-section .kn-paragraph-divider {
        padding: 1.25rem 0 0.75rem 3rem;
    }
}

@media (max-width: 480px) {
    .tree-knowledge-section {
        padding: 60px 1rem 80px;
    }

    .tree-knowledge-section .knowledge-header .section-title {
        font-size: 1.2rem;
    }

    .tree-knowledge-section .kn-paragraph-card {
        padding: 0 0 0 2.2rem;
    }

    .tree-knowledge-section .kn-essay::before {
        left: 0.9rem;
    }

    .tree-knowledge-section .kn-essay::after {
        left: 0.35rem;
    }

    .tree-knowledge-section .kn-pc-text {
        font-size: 0.87rem;
    }

    .tree-knowledge-section .kn-pc-tag {
        font-size: 0.45rem;
    }

    .tree-knowledge-section .kn-paragraph-divider {
        padding: 1rem 0 0.5rem 2.2rem;
    }
}

/* ========================================
   FAQ SECTION TREE
======================================== */
.faq-section-tree {
    padding: 100px 2rem;
    background: white;
    position: relative;
}

.faq-section-tree .faq-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(0, 166, 81, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section-tree .faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-section-tree .faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section-tree .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-section-tree .faq-item {
    background: var(--bg-soft);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.faq-section-tree .faq-item:hover {
    border-color: rgba(0, 166, 81, 0.1);
}

.faq-section-tree .faq-item.active {
    border-color: rgba(0, 166, 81, 0.2);
    box-shadow: 0 10px 30px rgba(0, 166, 81, 0.06);
}

.faq-section-tree .faq-q {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.faq-section-tree .fq-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 166, 81, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.faq-section-tree .faq-item.active .fq-icon {
    background: var(--primary-green);
    color: white;
}

.faq-section-tree .fq-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-green);
    flex-shrink: 0;
}

.faq-section-tree .fq-content {
    flex: 1;
    min-width: 0;
}

.faq-section-tree .fq-cat {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.faq-section-tree .fq-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-dark);
    line-height: 1.4;
}

.faq-section-tree .fq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.faq-section-tree .faq-item.active .fq-toggle {
    background: rgba(0, 166, 81, 0.1);
    color: var(--primary-green);
    transform: rotate(45deg);
}

.faq-section-tree .faq-a-wrap {
    height: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-section-tree .faq-a-inner {
    padding: 0 25px 25px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
}

.faq-section-tree .faq-a-inner strong {
    color: var(--secondary-dark);
}

/* ========================================
   TREE CTA
======================================== */
.tree-cta {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #0a3d1a 0%, var(--primary-dark) 50%, var(--primary-green) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.tree-cta .trust-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tree-cta .tc-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: hParticle 8s ease-in-out infinite;
}

.tree-cta .tc-particle.p1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tree-cta .tc-particle.p2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.tree-cta .tc-particle.p3 {
    bottom: 25%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes hParticle {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 0.8;
    }
}

.tree-cta .trust-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.tree-cta .trust-cta-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tree-cta .trust-cta-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.tree-cta .trust-cta-title span {
    color: #00e068;
}

.tree-cta .trust-cta-desc {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.tree-cta .trust-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.tree-cta .trust-cta-btn {
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.tree-cta .trust-cta-btn.primary {
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tree-cta .trust-cta-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tree-cta .trust-cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.tree-cta .trust-cta-btn.secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

/* ========================================
   SUPER 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;
}

.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:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 166, 81, 0.35);
}

.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;
}

.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);
}

.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);
}

.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-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 {
    color: var(--primary-green);
}

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

.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;
}

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

/* ========================================
   RESPONSIVE
======================================== */
@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;
    }

    .nav-actions {
        gap: 10px;
    }

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

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

    .policy-header.tree-hero {
        padding: 150px 12px 170px;
    }

    .story-ledger {
        top: 15px;
        left: 20px;
        gap: 2px;
        transform: scale(0.9);
        transform-origin: top left;
    }

    .ledger-tag {
        padding: 6px 12px;
        font-size: 9px;
    }

    .tree-hero-stat .ths-number {
        font-size: 1.6rem;
    }

    .stats-strip {
        padding: 40px 1.25rem;
    }

    .faq-section-tree .faq-q {
        padding: 16px 18px;
        gap: 12px;
    }

    .faq-section-tree .fq-content h3 {
        font-size: 0.92rem;
    }

    .tree-cta {
        padding: 70px 20px;
    }

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

    .footer-brand-col {
        padding-right: 0;
    }

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

    .tree-cta .trust-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .tree-hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        letter-spacing: -1px;
    }

    .tree-hero .last-updated {
        font-size: 0.75rem;
    }
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.tree-testimonials-section {
    padding: 100px 2rem;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 166, 81, 0.015) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 80%, rgba(56, 189, 248, 0.01) 0%, transparent 50%),
        #ffffff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.tree-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--bg-soft);
    border-radius: 20px;
    padding: 35px 30px 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), #38bdf8);
    opacity: 0;
    transition: opacity 0.45s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.12);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.03), rgba(0, 166, 81, 0.08));
    border-color: rgba(0, 166, 81, 0.1);
    transform: scale(1.03);
}

.testimonial-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.tc-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: #fbbf24;
}

.tc-quote {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 5px;
}

.tc-quote::before {
    content: '\201C';
    font-size: 3rem;
    line-height: 1;
    color: rgba(0, 166, 81, 0.1);
    position: absolute;
    top: -8px;
    left: -5px;
    font-family: Georgia, serif;
    pointer-events: none;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.tc-avatar {
    font-size: 2.2rem;
    color: var(--primary-green);
    opacity: 0.6;
    flex-shrink: 0;
}

.tc-info {
    display: flex;
    flex-direction: column;
}

.tc-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-dark);
}

.tc-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.tc-location i {
    font-size: 0.7rem;
    color: var(--primary-green);
}

.testimonials-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tb-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--bg-soft);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s ease;
}

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

.tb-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.15);
    background: white;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonial-card.featured {
        transform: none;
    }

    .testimonial-card.featured:hover {
        transform: translateY(-8px);
    }
}

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

    .testimonials-badges {
        gap: 12px;
    }

    .tb-badge {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   HOW IT WORKS / PROCESS SECTION
======================================== */
.tree-process-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #0a3d1a 0%, var(--primary-dark) 50%, #059669 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: white;
}

.tree-process-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.tp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.tp-orb.ta {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -100px;
    background: rgba(255, 255, 255, 0.04);
    animation: tpFloat 25s ease-in-out infinite;
}

.tp-orb.tb {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -80px;
    background: rgba(255, 255, 255, 0.03);
    animation: tpFloat 28s ease-in-out infinite reverse;
}

@keyframes tpFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

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

    100% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.tree-process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.process-header .section-label {
    color: rgba(255, 255, 255, 0.6);
}

.process-header .section-title {
    color: white;
}

.process-header .section-title span {
    color: #00e068;
}

.process-header .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(12.5% + 30px);
    right: calc(12.5% + 30px);
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 40px 25px 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.ps-number {
    width: 44px;
    height: 44px;
    background: rgba(0, 224, 104, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #00e068;
    margin: 0 auto 20px;
    transition: all 0.45s ease;
    position: relative;
}

.ps-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(0, 224, 104, 0.2);
    animation: psPulse 3s ease-in-out infinite;
}

@keyframes psPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.process-step:hover .ps-number {
    background: rgba(0, 224, 104, 0.25);
    transform: scale(1.1);
}

.ps-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: #00e068;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.process-step:hover .ps-icon {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.process-step p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 560px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

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