/* ========================================     PLANT FOR COMPANIES     ======================================== */
.companies-hero {
    background: #ffffff;
    padding: 6rem 0 4rem;
}

.companies-hero-container {
    text-align: center;
}

.companies-hero-title {
    font-size: 3.5rem;
    color: #0B3D2C;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.companies-hero-desc {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.companies-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.companies-packages-section {
    background: #0B3D2C;
    padding: 5rem 0;
    position: relative;
}

.companies-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.companies-packages-title {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.companies-packages-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.co2-calc-intro {
    text-align: center;
    margin: 4rem 0 2rem;
}

.co2-calc-intro-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.co2-calc-intro-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.companies-trust-section {
    background: #ffffff;
    padding: 4rem 0;
}

.companies-trust-title {
    font-size: 2.2rem;
    color: #0B3D2C;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.companies-trust-desc {
    color: #4b5563;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.trust-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.trust-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.trust-card-title {
    color: #0B3D2C;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-card-desc {
    color: #4b5563;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.companies-transparency-note {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2.5rem;
    border-left: 4px solid #6B8E23;
}

.companies-transparency-title {
    color: #0B3D2C;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.companies-transparency-desc {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.companies-price-box {
    background: #FEF3C7;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #d4a373;
    min-width: 250px;
}

.companies-price-text {
    color: #92400E;
    font-size: 0.8rem;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

/* Responsive Grid Overrides */
@media (max-width: 968px) {

    .individuals-occasions-grid,
    .individuals-promise-grid,
    .companies-packages-grid,
    .plant-calc-grid,
    .companies-trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;

    }


}

@media (max-width: 640px) {

    .individuals-occasions-grid,
    .individuals-promise-grid,
    .companies-packages-grid,
    .plant-calc-grid,
    .companies-trust-grid {
        grid-template-columns: 1fr !important;

    }


}

/* ========================================
   OUR FOREST PAGE
   ======================================== */
.companies-wave-white {
    background: #0B3D2C;
    position: relative;
}

.forest-hero {
    background: linear-gradient(135deg, rgba(11, 61, 44, 0.9), rgba(26, 71, 42, 0.85)),
        url('/assets/images/forest-hero.jpg') center/cover no-repeat;
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.forest-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(11, 61, 44, 1), transparent);
    pointer-events: none;
}

.forest-hero .container {
    position: relative;
    z-index: 2;
}

.forest-hero h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.forest-hero h1 span {
    color: #6B8E23;
}

.forest-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.forest-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.forest-stat {
    text-align: center;
}

.forest-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #6B8E23;
    display: block;
}

.forest-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

/* Location Section */
.location-section {
    background: #ffffff;
    padding: 5rem 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-content h2 {
    color: #0B3D2C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.location-content p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.location-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-feature-icon {
    background: linear-gradient(135deg, #C8E6C9, #A5D6A7);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.location-feature-text h4 {
    color: #0B3D2C;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.location-feature-text p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.location-map {
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.location-map-placeholder {
    background: linear-gradient(135deg, #C8E6C9, #A5D6A7);
    border-radius: 16px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.location-map-placeholder span {
    font-size: 4rem;
}

.location-map-placeholder p {
    color: #0B3D2C;
    font-weight: 600;
    margin: 0;
}

.map-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-badge strong {
    color: #0B3D2C;
    display: block;
    font-size: 0.85rem;
}

.map-badge span {
    color: #6B8E23;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Tree Species Section */
.species-section {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    padding: 5rem 0;
}

.forest-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.forest-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 1rem;
}

.forest-section-header p {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.species-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.species-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.species-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.species-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.species-card h4 {
    color: #0B3D2C;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.species-card .latin {
    color: #6B8E23;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.species-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    background: #ffffff;
    padding: 5rem 0;
}

.year-timeline {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.year-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, #C8E6C9, #6B8E23, #2E7D32);
    z-index: 0;
    transform: translateY(-50%);
}

.year-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.year-marker {
    background: linear-gradient(135deg, #6B8E23, #2E7D32);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(107, 142, 35, 0.3);
}

.year-item h4 {
    color: #0B3D2C;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.year-item p {
    color: #6b7280;
    font-size: 0.85rem;
    max-width: 150px;
    margin: 0 auto;
}

/* Impact Section */
.forest-impact-section {
    background: linear-gradient(135deg, #0B3D2C 0%, #1A472A 50%, #2E7D32 100%);
    padding: 5rem 0;
}

.forest-impact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.forest-impact-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

.forest-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.forest-impact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.forest-impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.forest-impact-card h4 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.forest-impact-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* CTA Section */
.forest-cta {
    background: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.forest-cta h2 {
    color: #0B3D2C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.forest-cta p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.forest-cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-forest {
    display: inline-block;
    background: linear-gradient(135deg, #6B8E23, #2E7D32);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-forest:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 142, 35, 0.3);
}

.btn-forest-outline {
    display: inline-block;
    background: transparent;
    color: #0B3D2C;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #0B3D2C;
    transition: all 0.3s ease;
}

.btn-forest-outline:hover {
    background: #0B3D2C;
    color: white;
}

/* Our Forest - Media Queries */
@media (max-width: 992px) {
    .forest-hero h1 {
        font-size: 2.5rem;
    }

    .forest-hero-stats {
        gap: 2rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .species-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .year-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .year-timeline::before {
        display: none;
    }

    .forest-impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .forest-hero h1 {
        font-size: 2rem;
    }

    .forest-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .location-features {
        grid-template-columns: 1fr;
    }

    .species-grid {
        grid-template-columns: 1fr;
    }

    .forest-impact-grid {
        grid-template-columns: 1fr;
    }
}

.forest-wave-top {
    background: linear-gradient(135deg, #0B3D2C 0%, #1A472A 50%, #2E7D32 100%);
    position: relative;
}

.forest-wave-svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ========================================
   FAQ PAGE
   ======================================== */
.faq-wave-container {
    background: #ffffff;
    position: relative;
    display: none;
}

.faq-wave-svg {
    display: block;
    width: 100%;
    height: 80px;
}

.faq-wave-svg path {
    fill: #0B3D2C;
}

.faq-hero {
    background: #ffffff;
    padding: 10rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    display: none;
}

.faq-hero .container {
    position: relative;
    z-index: 2;
}

.faq-hero h1 {
    color: #0B3D2C;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-hero p {
    color: #6B7280;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-section {
    background: #ffffff;
    padding: 5rem 0;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    background: white;
    color: #4b5563;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: #0B3D2C;
    border-color: #0B3D2C;
    color: white;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #0B3D2C;
    font-size: 1.05rem;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.8;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer a {
    color: #6B8E23;
    font-weight: 600;
}

.faq-cta {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    padding: 4rem 0;
    text-align: center;
}

.faq-cta h2 {
    color: #0B3D2C;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-cta p {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.faq-cta-btn {
    display: inline-block;
    background: #6B8E23;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-cta-btn:hover {
    background: #5a7a1e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2.2rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-hero-premium {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0B3D2C 0%, #1A472A 50%, #2E7D32 100%);
    overflow: hidden;
}

.about-hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* use css variable with fallback */
    background: var(--about-hero-image, url('/assets/images/18447.webp')) center/cover no-repeat;
    opacity: 0.5;
}

.blog-post-hero-image {
    background-image: var(--bg-image);
}

.about-hero-premium .container {
    position: relative;
    z-index: 2;
}

.image-attribution {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    z-index: 3;
}

.image-attribution a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.about-hero-content-premium {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 4rem 0;
}

.about-hero-content-premium .section-tag {
    background: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-hero-content-premium h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-hero-content-premium .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section - New Design */
.about-story-section {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    padding: 5rem 0;
}

.story-two-column {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.story-left {
    text-align: left;
}

.story-decorative {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.story-decorative .dots {
    color: #4CAF50;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.story-main-title {
    color: #1A472A;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.story-main-subtitle {
    color: #4CAF50;
    font-size: 1.25rem;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

.story-right p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.story-right p:last-child {
    margin-bottom: 0;
}

.story-right strong {
    color: #1A472A;
    font-weight: 600;
}

/* Core Principles - New Design */
.mission-header-new {
    text-align: center;
    margin-bottom: 3.5rem;
}

.mission-decorative {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dots-white {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.mission-header-new h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mission-header-new p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.principles-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.principle-card-new {
    text-align: left;
}

.principle-icon-new {
    margin-bottom: 1rem;
}

.principle-card-new h3 {
    color: #4CAF50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.principle-card-new p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Old Story Styles (keep for backward compatibility if needed) */
.story-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.story-header .section-tag {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: #2E7D32;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.story-header h2 {
    color: #1A472A;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.story-header .story-subtitle {
    color: #2E7D32;
    font-size: 1.25rem;
    font-style: italic;
}

.story-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-text h3 {
    color: #1A472A;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.story-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.story-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(46, 125, 50, 0.2), transparent);
    pointer-events: none;
}

.story-quote {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid #4CAF50;
    margin: 3rem 0;
}

.story-quote p {
    color: #1A472A;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    margin: 0;
}

/* Mission Section */
.about-mission-premium {
    background: linear-gradient(135deg, #0B3D2C, #1A472A);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-mission-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mission-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mission-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mission-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.principle-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.principle-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.principle-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.principle-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.principle-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.principle-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Transparency Section */
.transparency-section {
    background: #ffffff;
    padding: 6rem 0;
}

.transparency-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.transparency-header .section-tag {
    background: linear-gradient(135deg, #FFF8E1, #FFE082);
    color: #F57C00;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.transparency-header h2 {
    color: #1A472A;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.transparency-header p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
}

.price-breakdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.price-item {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.price-item:hover {
    border-color: #4CAF50;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
}

.price-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.price-item-icon svg {
    width: 28px;
    height: 28px;
    stroke: #2E7D32;
}

.price-item h3 {
    color: #1A472A;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.price-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

.transparency-note {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px dashed #4CAF50;
}

.transparency-note p {
    color: #1A472A;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.transparency-note strong {
    color: #2E7D32;
}

/* Germany Focus Banner */
.germany-focus {
    background: linear-gradient(135deg, #1A472A, #2E7D32);
    padding: 4rem 0;
    text-align: center;
}

.germany-focus-content {
    max-width: 600px;
    margin: 0 auto;
}

.germany-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.germany-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.germany-focus h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.germany-focus p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* CTA Section Premium */
.about-cta-premium {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-cta-premium .container {
    position: relative;
    z-index: 2;
}

.about-cta-premium h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta-premium p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: #2E7D32;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #1A472A;
}

/* Responsive */
@media (max-width: 992px) {
    .story-two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-left {
        text-align: center;
    }

    .story-decorative {
        justify-content: center;
    }

    .principles-grid-new,
    .principles-grid,
    .price-breakdown {
        grid-template-columns: 1fr;
    }

    .principle-card-new {
        text-align: center;
    }

    .principle-icon-new {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-hero-content-premium h1 {
        font-size: 2.5rem;
    }

    .story-header h2,
    .mission-header h2,
    .transparency-header h2 {
        font-size: 2rem;
    }

    .story-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   VERIFY PAGE
   ======================================== */
.verify-page-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.verify-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.9) 0%, rgba(21, 128, 61, 0.85) 100%),
        url('/assets/images/verify-hero.webp') center/cover no-repeat fixed;
    z-index: 0;
}

.verify-page-hero .hero-overlay {
    display: none;
}

.verify-page-hero .container {
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .verify-page-hero::before {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9)),
        url('/assets/images/verify-hero.webp') center/cover no-repeat fixed;
}

.verify-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.verify-hero-text {
    text-align: center;
}

.verify-hero-desc {
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* Verification Card */
.verify-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.verify-form label {
    display: block;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.verify-input-row {
    display: flex;
    gap: 0.75rem;
}

.verify-input-row input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1.1rem;
    color: white;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.1);
}

.verify-input-row input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.verify-input-row input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.verify-input-row .btn-eco-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    white-space: nowrap;
    border-radius: 12px;
}

/* Error Message */
.verify-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    color: #dc2626;
    font-size: 0.9rem;
    text-align: left;
}

/* Hint Text */
.verify-hint {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 640px) {
    .verify-input-row {
        flex-direction: column;
    }

    .verify-input-row .btn-eco-primary {
        justify-content: center;
    }

    .verify-card {
        padding: 1.5rem;
    }

    .verify-page-hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }
}

/* ========================================
   CERTIFICATE VIEW (PRINT STYLES)
   ======================================== */
@media print {

    /* Force print colors */
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        margin: 0;
        padding: 0;
        box-sizing: border-box !important;
    }

    /* A4 page settings with equal margins */
    @page {
        size: A4 portrait;
        margin: 10mm;
    }

    /* Reset body */
    html,
    body {
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: white !important;
    }

    /* Hide unnecessary elements */
    header,
    footer,
    .no-print,
    .cert-hero,
    .cert-info-panel,
    nav,
    .scroll-to-top,
    .cookie-banner {
        display: none !important;
    }

    /* Content - centered */
    .cert-content {
        padding: 0 !important;
        margin: 0 !important;
        background: white !important;
        width: 100% !important;
        height: 100% !important;
    }

    .cert-content>.container {
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .cert-layout {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    .cert-visual-wrap {
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Certificate card - full page */
    .cert-card-new {
        width: 100% !important;
        height: 277mm !important;
        /* A4 height minus margins */
        margin: 0 !important;
        border: 3px solid #064e3b !important;
        border-radius: 8px !important;
        box-shadow: none !important;
        display: flex !important;
        flex-direction: column !important;
        background: linear-gradient(180deg, #fefefe 0%, #f8fdf9 100%) !important;
    }

    /* Top decorative bar */
    .cert-top-bar {
        background: linear-gradient(90deg, #064e3b, #15803d, #064e3b) !important;
        height: 5mm !important;
        flex-shrink: 0 !important;
    }

    .cert-corner-leaf {
        font-size: 6mm !important;
        top: 2mm !important;
    }

    .cert-corner-leaf.left {
        left: 4mm !important;
    }

    .cert-corner-leaf.right {
        right: 4mm !important;
    }

    /* Certificate body */
    .cert-body {
        flex: 1 !important;
        padding: 8mm 15mm !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Brand section */
    .cert-brand {
        text-align: center !important;
        margin-bottom: 6mm !important;
    }

    .brand-tree {
        font-size: 15mm !important;
        display: block !important;
    }

    .brand-name {
        font-size: 8mm !important;
        color: #064e3b !important;
        display: block !important;
        font-weight: 700 !important;
    }

    .brand-tagline {
        font-size: 3mm !important;
        color: #6b7280 !important;
        letter-spacing: 0.2em !important;
        display: block !important;
        margin-top: 1mm !important;
    }

    /* Title section */
    .cert-title-section {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4mm !important;
        margin-bottom: 6mm !important;
    }

    .cert-title-section h1 {
        font-size: 5mm !important;
        color: #064e3b !important;
        letter-spacing: 0.25em !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }

    .cert-title-line {
        flex: 1 !important;
        max-width: 25mm !important;
        height: 0.5mm !important;
        background: linear-gradient(90deg, transparent, #d4a373, transparent) !important;
    }

    /* Main content */
    .cert-main {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .cert-intro {
        font-size: 4mm !important;
        color: #6b7280 !important;
        margin-bottom: 4mm !important;
    }

    /* Recipient */
    .cert-recipient {
        margin-bottom: 6mm !important;
    }

    .recipient-occasion {
        font-size: 4mm !important;
        color: #15803d !important;
        display: block !important;
        margin-bottom: 2mm !important;
    }

    .recipient-from {
        font-size: 3.5mm !important;
        color: #9ca3af !important;
        display: block !important;
        margin-bottom: 3mm !important;
    }

    .recipient-name {
        font-size: 10mm !important;
        color: #064e3b !important;
        font-weight: 700 !important;
        display: block !important;
        line-height: 1.2 !important;
    }

    .recipient-type {
        font-size: 3.5mm !important;
        color: #15803d !important;
        display: block !important;
        margin-top: 2mm !important;
    }

    .cert-action {
        font-size: 4mm !important;
        color: #6b7280 !important;
        margin-bottom: 6mm !important;
    }

    /* Tree display */
    .cert-tree-display {
        background: #ecfdf5 !important;
        border: 0.5mm solid #d1fae5 !important;
        border-radius: 4mm !important;
        padding: 4mm 8mm !important;
        margin-bottom: 6mm !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6mm !important;
    }

    .tree-visual {
        display: flex !important;
        align-items: center !important;
        gap: 1mm !important;
    }

    .tree-icon {
        font-size: 8mm !important;
    }

    .tree-more {
        font-size: 4mm !important;
        color: #065f46 !important;
        font-weight: 600 !important;
    }

    .tree-count-box {
        background: white !important;
        border: 0.5mm solid #e5e7eb !important;
        border-radius: 3mm !important;
        padding: 3mm 5mm !important;
        text-align: center !important;
    }

    .count-number {
        font-size: 12mm !important;
        color: #15803d !important;
        font-weight: 700 !important;
        display: block !important;
        line-height: 1 !important;
    }

    .count-label {
        font-size: 3mm !important;
        color: #065f46 !important;
        letter-spacing: 0.1em !important;
        display: block !important;
    }

    /* Impact row */
    .cert-impact-row {
        background: #f9fafb !important;
        border: 0.5mm solid #e5e7eb !important;
        border-radius: 3mm !important;
        padding: 4mm !important;
        margin-bottom: 6mm !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6mm !important;
    }

    .impact-item {
        text-align: center !important;
    }

    .impact-icon {
        font-size: 5mm !important;
        display: block !important;
        margin-bottom: 1mm !important;
    }

    .impact-value {
        font-size: 3.5mm !important;
        color: #064e3b !important;
        font-weight: 700 !important;
        display: block !important;
    }

    .impact-label {
        font-size: 2.5mm !important;
        color: #6b7280 !important;
        display: block !important;
    }

    .impact-divider {
        width: 0.3mm !important;
        height: 12mm !important;
        background: #e5e7eb !important;
    }

    /* Footer */
    .cert-footer {
        border-top: 0.5mm dashed #e5e7eb !important;
        padding-top: 4mm !important;
        margin-top: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .cert-date-section,
    .cert-id-section {
        text-align: center !important;
    }

    .date-label,
    .id-label {
        font-size: 2.5mm !important;
        color: #9ca3af !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        display: block !important;
    }

    .date-value {
        font-size: 3.5mm !important;
        color: #374151 !important;
        font-weight: 600 !important;
        display: block !important;
        margin-top: 1mm !important;
    }

    .id-value {
        font-size: 3mm !important;
        color: #374151 !important;
        font-weight: 600 !important;
        font-family: monospace;
        display: block !important;
        margin-top: 1mm !important;
    }

    .cert-qr {
        text-align: center !important;
    }

    .qr-placeholder {
        width: 12mm !important;
        height: 12mm !important;
        background: linear-gradient(135deg, #15803d, #166534) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 1mm !important;
    }

    .qr-placeholder span {
        font-size: 6mm !important;
        color: white !important;
    }

    .qr-text {
        font-size: 2.5mm !important;
        color: #15803d !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
    }

    /* Bottom bar */
    .cert-bottom-bar {
        background: linear-gradient(90deg, #d4a373, #e5c9a8, #d4a373) !important;
        height: 3mm !important;
        flex-shrink: 0 !important;
    }
}

/* ========================================
   HOME PAGE REFACTOR
   ======================================== */
/* Why Restore Section */
.section-tag-icon {
    vertical-align: middle;
    margin-right: 5px;
}

.restore-feature-icon {
    margin-right: 10px;
}

/* Planting Process Section */
.planting-process-section {
    background: #ffffff;
    padding: 6rem 0;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.process-header-dash {
    color: #d4a373;
    letter-spacing: 3px;
}

.process-title {
    font-size: 2.8rem;
    color: #0B3D2C;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
}

.process-step-card.step-gradient {
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.process-step-card.step-white {
    background: white;
    border: 2px solid #e5e7eb;
}

.step-icon-circle {
    width: 80px;
    height: 80px;
    margin: 2rem auto 1.5rem;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    color: #6B8E23;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-style: italic;
}

.step-desc {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-desc strong {
    color: #0B3D2C;
}

/* Calculator CTA */
.calculator-cta-container {
    margin-top: var(--spacing-8);
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-6);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.calculator-cta-title {
    color: #ffffff;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-4);
}

.calculator-cta-text {
    color: #ffffff;
    margin-bottom: var(--spacing-5);
    font-size: var(--font-size-lg);
    opacity: 0.95;
}

.btn-calculator-cta {
    display: inline-block;
    padding: var(--spacing-3) var(--spacing-6);
    background: white;
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: transform var(--transition-base);
}

.btn-calculator-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-calculator-cta svg {
    vertical-align: middle;
    margin-right: var(--spacing-2);
}

/* Current Mission Section */
.current-mission-section {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.mission-container {
    position: relative;
    z-index: 2;
}

.mission-decoration {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mission-dash {
    color: #d4a373;
    letter-spacing: 3px;
}

.mission-title {
    color: #0B3D2C;
    font-size: 2.5rem;
    font-weight: 700;
}

.btn-mission-view {
    background: #6B8E23;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}

.mission-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.mission-stat-card {
    background: #E8F5E9;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.mission-icon-circle {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-bottom: 1rem;
}

.mission-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B3D2C;
}

.mission-label {
    color: #4b5563;
    font-size: 0.9rem;
}

/* Home CTA Section */
.home-cta-section {
    background: #ffffff;
}

.home-cta-content {
    background: transparent;
}

.home-cta-title {
    color: #0B3D2C;
}

.home-cta-desc {
    color: #4b5563;
}

.btn-home-cta-primary {
    background: #6B8E23 !important;
    color: white !important;
}

.btn-home-cta-secondary {
    background: transparent !important;
    color: #0B3D2C !important;
    border: 2px solid #0B3D2C !important;
}

.btn-home-cta-icon {
    vertical-align: middle;
    margin-right: 6px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {

    .process-steps-grid,
    .mission-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .process-steps-grid,
    .mission-stats-grid {
        grid-template-columns: 1fr;
    }

    .mission-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .process-title,
    .mission-title {
        font-size: 2rem;
    }

    .home-cta-section {
        padding: 4rem 0;
    }
}

/* ========================================
   IMPACT VISUALIZER PARTIAL
   ======================================== */
.plant-impact-section {
    background: #ffffff;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.plant-impact-container {
    position: relative;
    z-index: 1;
}

.plant-impact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.plant-impact-badge {
    display: inline-block;
    background: rgba(107, 142, 35, 0.1);
    color: #6B8E23;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.plant-impact-subtitle {
    color: #6b7280;
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}

.plant-impact-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.plant-impact-footer {
    text-align: center;
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 2rem;
    font-style: italic;
}

/* Extracted from internal style block */
.impact-btn {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.impact-btn:hover {
    background: #e5e7eb;
    color: #0B3D2C;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.impact-btn.active {
    background: linear-gradient(135deg, #6B8E23, #556B2F);
    color: white;
    border-color: #6B8E23;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

.impact-card-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0B3D2C;
    margin-bottom: 0.25rem;
    font-variant-numeric: tabular-nums;
}

.impact-card-unit {
    color: #9ca3af;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.impact-card-label {
    color: #374151;
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 968px) {
    .plant-impact-selector {
        gap: 0.75rem;
    }

    .plant-impact-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .plant-impact-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================================================
   CONSOLIDATED FROM: cookie.css
   ============================================================================ */
/**
 * Clean Cookie Consent - Cookiebot Style
 * Compact, intuitive, professional
 */
/* ========================================
   Cookie Trigger Icon
   ======================================== */
.cookie-trigger {
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    width: 56px;
    height: 56px;
    background: #001f3f;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.3);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cookie-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 31, 63, 0.4);
}

.cookie-trigger svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.cookie-trigger.hidden {
    display: none;
}

/* ========================================
   Modal
   ======================================== */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cookie-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

/* ========================================
   Header
   ======================================== */
.cookie-header {
    padding: 0.625rem 1.5rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
}

.cookie-logo {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-logo strong {
    display: block;
    font-size: 0.9375rem;
    color: white;
    font-weight: 700;
    margin-bottom: 0;
}

/* ========================================
   Tabs
   ======================================== */
.cookie-tabs {
    display: flex;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.cookie-tab {
    flex: 1;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
}

.cookie-tab:hover {
    color: rgba(255, 255, 255, 0.9);
}

.cookie-tab.active {
    color: white;
    border-bottom-color: white;
}

/* ========================================
   Tab Content
   ======================================== */
.cookie-tab-content {
    display: none;
    padding: 0.875rem 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.cookie-tab-content.active {
    display: block;
}

.cookie-tab-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.375rem 0;
}

.cookie-tab-description {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-bottom: 0.875rem;
}

/* ========================================
   CONSENT TAB - Simple List with Toggles
   ======================================== */
.cookie-consent-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.cookie-consent-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-consent-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cookie-consent-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

/* Toggle Switch - iOS Style */
.toggle-switch {
    position: relative;
    width: 51px;
    height: 31px;
    flex-shrink: 0;
    display: inline-block;
}

.toggle-switch input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    cursor: pointer;
    z-index: 2;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 31px;
    transition: 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
    z-index: 1;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 27px;
    width: 27px;
    left: 2px;
    bottom: 2px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked+.toggle-slider {
    background: #34c759;
    border-color: #34c759;
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(20px);
}

.toggle-switch input:disabled+.toggle-slider {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

.toggle-switch input:disabled+.toggle-slider:before {
    background: rgba(255, 255, 255, 0.8);
}

/* Checked AND Disabled (Necessary toggle) - Keep it green */
.toggle-switch input:checked:disabled+.toggle-slider {
    background: #34c759;
    border-color: #34c759;
    opacity: 0.8;
    cursor: not-allowed;
}

.toggle-switch input:checked:disabled+.toggle-slider:before {
    background: white;
}

/* ========================================
   DETAILS TAB - Expandable Categories
   ======================================== */
.cookie-category-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cookie-category {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
    border-bottom: none;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    cursor: pointer;
}

.category-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.category-expand-icon {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.2s;
}

.category-header.expanded .category-expand-icon {
    transform: rotate(180deg);
}

.category-label {
    flex: 1;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.category-count {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.125rem 0.625rem;
    border-radius: 12px;
    margin-left: 0.5rem;
}

.category-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.category-details.expanded {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.category-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-item strong {
    color: white;
}

/* ========================================
   Action Buttons
   ======================================== */
.cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.cookie-btn {
    padding: 0.625rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8125rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-deny {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-deny:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-selection {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-selection:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-btn-all {
    background: white;
    color: #001f3f;
}

.cookie-btn-all:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ========================================
   Mobile
   ======================================== */
@media (max-width: 768px) {
    .cookie-banner {
        width: 95%;
        max-height: 95vh;
    }

    .cookie-header,
    .cookie-tab-content,
    .cookie-actions {
        padding: 1.25rem 1.5rem;
    }

    .cookie-tab {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .cookie-actions {
        grid-template-columns: 1fr;
    }

    .cookie-trigger {
        left: 1.5rem;
        bottom: 1.5rem;
        width: 50px;
        height: 50px;
    }
}

/* ============================================================================
   CONSOLIDATED FROM: occasions.css
   ============================================================================ */
/* ========================================
   PREMIUM CORPORATE STYLES - STANDARD
   ======================================= */
/* Hero Section */
.occasion-hero {
    position: relative;
    padding: 180px 0 100px;
    /* video background */
    overflow: hidden;
    color: white;
}

/* Texture removed for video */
.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Gift Section */
.section-why {
    padding: 100px 0;
    background: #fcfbf9;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-text h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-dark-green);
    margin-bottom: 1.5rem;
}

.why-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Emotional Visual */
.emotional-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background: linear-gradient(135deg, #f4f4f4 0%, #e8e8e8 100%);
    border-radius: 20px;
    border: 1px solid rgba(11, 61, 44, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ============================================================================
   CONSOLIDATED FROM: individuals-companies.css
   ============================================================================ */
/* ========================================
   PLANT FOR INDIVIDUALS
   ======================================== */
/* Promise Section */
/* ========================================
   PLANT FOR COMPANIES
   ======================================== */
/* Responsive Grid Overrides */
@media (max-width: 968px) {

    .individuals-occasions-grid,
    .individuals-promise-grid,
    .companies-packages-grid,
    .plant-calc-grid,
    .companies-trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {

    .individuals-occasions-grid,
    .individuals-promise-grid,
    .companies-packages-grid,
    .plant-calc-grid,
    .companies-trust-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================================================
   CONSOLIDATED FROM: checkout/index.php embedded styles
   ============================================================================ */

/* Checkout Hero */
.checkout-hero {
    background: linear-gradient(135deg, #0B3D2C 0%, #1A472A 100%) !important;
    padding: 10rem 0 3rem !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    border: 5px solid red !important; /* TEST - Remove this line after confirming CSS loads */
}

.checkout-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(107, 142, 35, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.checkout-hero .container {
    position: relative;
    z-index: 2;
}

.checkout-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.checkout-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Scoped Checkout Styles */
.checkout-page {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%) !important;
    min-height: auto !important;
    padding: 3rem 0 5rem !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

.checkout-container {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
    display: grid !important;
    grid-template-columns: 1fr 400px !important;
    gap: 3rem !important;
    align-items: start !important;
}

.checkout-form-column {
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    padding: 2.5rem !important;
    border: 1px solid #e5e7eb !important;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f3f4f6;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 svg {
    color: #6B8E23;
    flex-shrink: 0;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6B8E23;
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-optional-label {
    color: #9ca3af;
    font-weight: 400;
    font-size: 0.9rem;
}

.checkout-summary-column {
    position: sticky;
    top: 2rem;
}

.summary-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e5e7eb !important;
    overflow: hidden !important;
}

.summary-header {
    background: linear-gradient(135deg, #0B3D2C, #1A472A) !important;
    padding: 1.5rem !important;
    border-bottom: none !important;
}

.summary-header h3 {
    margin: 0 !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
}

.package-preview {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #f3f4f6;
    background: #fafafa;
}

.pkg-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.checkout-pkg-icon--transparent {
    background: transparent;
}

.checkout-pkg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pkg-details {
    flex: 1;
}

.pkg-details h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
}

.pkg-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #E8F5E9;
    color: #2E7D32;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-lines {
    padding: 1.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.summary-line:last-child {
    margin-bottom: 0;
}

.summary-line strong {
    color: #111827;
    font-weight: 600;
}

.summary-line.total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
    font-weight: 700;
    font-size: 1.4rem;
    color: #111827;
}

.summary-line.total span {
    color: #6B8E23;
}

.trust-badges {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0 0 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.trust-item svg {
    color: #6B8E23;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.trust-item div {
    flex: 1;
}

.trust-item strong {
    display: block;
    color: #111827;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.trust-item div br + text() {
    color: #6b7280;
    font-size: 0.85rem;
}

.btn-pay {
    width: 100% !important;
    background: linear-gradient(135deg, #6B8E23, #5a781d) !important;
    color: white !important;
    border: none !important;
    padding: 1.1rem 1.5rem !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    transition: all 0.3s ease !important;
    margin-top: 1.5rem !important;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3) !important;
}

.btn-pay:hover {
    background: linear-gradient(135deg, #5a781d, #4a6617);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 142, 35, 0.4);
}

.btn-pay svg {
    transition: transform 0.3s ease;
}

.btn-pay:hover svg {
    transform: translateX(3px);
}

.stripe-note {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 8px;
}

.stripe-note svg {
    flex-shrink: 0;
}

.u-hidden {
    display: none !important;
}

@media (max-width: 900px) {
    .checkout-hero {
        padding: 8rem 0 2.5rem;
    }
    
    .checkout-hero-content h1 {
        font-size: 2rem;
    }
    
    .checkout-hero-content p {
        font-size: 1rem;
    }
    
    .checkout-page {
        padding: 2rem 0 3rem;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .checkout-summary-column {
        order: -1;
        position: static;
    }
    
    .checkout-form-column {
        padding: 2rem 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .checkout-hero {
        padding: 7rem 0 2rem;
    }
    
    .checkout-hero-content h1 {
        font-size: 1.75rem;
    }
    
    .checkout-page {
        padding: 1.5rem 0 2rem;
    }
    
    .checkout-container {
        padding: 0 0.75rem;
    }
    
    .checkout-form-column {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .summary-card {
        border-radius: 12px;
    }
    
    .form-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .form-section h3 {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.65rem 0.85rem;
        font-size: 0.95rem;
    }
    
    .btn-pay {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .stripe-note {
        font-size: 0.8rem;
        padding: 0.65rem;
    }
}

/* ============================================================================
   CONSOLIDATED FROM: privacy-policy.php + imprint.php embedded styles
   ============================================================================ */
.legal-page {
    background: #ffffff;
    min-height: 100vh;
}

.legal-hero {
    background: #ffffff;
    padding: 10rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero h1 {
    font-size: 2.5rem;
    color: #0B3D2C;
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
}

.legal-hero p {
    color: #4b5563;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: #0B3D2C;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8f5e9;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.15rem;
    color: #1a5c42;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #6B8E23;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.legal-content a:hover {
    border-bottom-color: #6B8E23;
}

.legal-info-card {
    background: #f0faf0;
    border-left: 4px solid #6B8E23;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.legal-info-card p {
    margin: 0.25rem 0;
}

.legal-info-card strong {
    color: #0B3D2C;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.cookie-table th {
    background: #0B3D2C;
    color: white;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.cookie-table tr:nth-child(even) td {
    background: #f9fafb;
}

.cookie-table code {
    background: #e8f5e9;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #0B3D2C;
}

@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-content {
        margin: -1rem 1rem 2rem;
        padding: 2rem 1.5rem;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

/* ========================================
   UTILITY CLASSES (extracted from inline styles)
   ======================================== */
/* Inline SVG badge — used for checkmark icons inside headings */
.svg-inline-badge {
    vertical-align: text-bottom;
    margin-left: 4px;
}

/* Inline SVG with right margin — used in list items / badges */
.svg-inline-left {
    vertical-align: middle;
    margin-right: 6px;
}

/* Centered flex row with gap — replaces repeated style="display:flex;align-items:center;justify-content:center;gap:1rem;margin-bottom:1rem;" */
.flex-center-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* SVG wave decorator block — replaces style="display:block;width:100%;height:80px;" */
.wave-svg-block {
    display: block;
    width: 100%;
    height: 80px;
}

/* Cost breakdown card - green gradient card used in transparency section */
.pat-cost-card {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 16px;
    padding: 2rem;
    border-left: 4px solid #6B8E23;
    text-align: center;
    transition: all 0.3s ease;
}

.pat-cost-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(107, 142, 35, 0.2);
}

.pat-cost-card__icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pat-cost-card__title {
    color: #0B3D2C;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pat-cost-card__desc {
    color: #4b5563;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Cost Breakdown Grid - 3 columns */
.pat-cost-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

/* VAT notice - centered */
.pat-vat-notice-center {
    background: #FEF3C7;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 0 auto;
    max-width: 800px;
    border: 1px solid #d4a373;
    color: #92400E;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

@media (max-width: 768px) {
    .pat-cost-breakdown-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Old styles kept for compatibility */
.pat-cost-card__row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* VAT notice yellow card */
.pat-vat-notice {
    background: #FEF3C7;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
    border: 1px solid #d4a373;
}

.pat-vat-notice__text {
    color: #92400E;
    font-size: 0.85rem;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pat-vat-notice__icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Why Trees section heading/text */
.pat-why-title {
    color: #0B3D2C;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pat-why-desc {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   BLOG DETAIL PAGE (show.php)
   ======================================== */
/* Blog Post Hero */
.blog-post-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    padding: 7rem 0 2.5rem;
    color: white;
}

.blog-post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.blog-post-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.blog-post-hero-default {
    background: linear-gradient(135deg, #064e3b, #065f46);
}

.blog-post-hero .container {
    position: relative;
    z-index: 2;
}

.blog-post-hero-content {
    max-width: 700px;
}

/* Category Badge */
.blog-post-category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-post-category-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.blog-post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-post-hero h1 {
    font-size: 2rem;
    line-height: 1.3;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.blog-post-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.meta-item svg {
    opacity: 0.8;
    width: 16px;
    height: 16px;
}

/* Content Section Layout */
.blog-post-content-section {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    padding: 2rem 0;
}

[data-theme="dark"] .blog-post-content-section {
    background: linear-gradient(180deg, rgba(6, 78, 59, 0.1) 0%, var(--bg-primary) 100%);
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: start;
}

.blog-post-main {
    min-width: 0;
}

/* Share Bar */
.blog-share-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.share-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.share-buttons {
    display: flex;
    gap: 0.4rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #166fe5;
    color: white;
}

.share-twitter {
    background: #000000;
}

.share-twitter:hover {
    background: #333333;
    color: white;
}

.share-linkedin {
    background: #0a66c2;
}

.share-linkedin:hover {
    background: #095196;
    color: white;
}

.share-whatsapp {
    background: #25d366;
}

.share-whatsapp:hover {
    background: #20bd5a;
    color: white;
}

/* Blog Post Body */
.blog-post-body {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.blog-post-body h2 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.blog-post-body h3 {
    font-size: 1.2rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.blog-post-body h4 {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.blog-post-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.blog-post-body ul,
.blog-post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-post-body li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.blog-post-body blockquote {
    border-left: 4px solid var(--accent-primary);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--accent-bg);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.blog-post-body blockquote p {
    margin-bottom: 0;
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.blog-post-body a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-post-body a:hover {
    color: var(--accent-dark);
}

.blog-post-body pre {
    background: var(--bg-tertiary);
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    margin: 1rem 0;
}

.blog-post-body code {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.85rem;
    background: var(--bg-tertiary);
    padding: 0.15rem 0.3rem;
    border-radius: 4px;
}

.blog-post-body pre code {
    background: none;
    padding: 0;
}

/* Post Footer */
.blog-post-footer {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.post-category-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.post-category-link a {
    color: var(--accent-primary);
    font-weight: 600;
}

.post-category-link a:hover {
    text-decoration: underline;
}

.blog-share-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-share-bottom .share-label {
    font-weight: 600;
    color: var(--text-primary);
}

.blog-share-bottom .share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.blog-share-bottom .share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    width: auto;
    height: auto;
}

.blog-back-link {
    margin-top: 2rem;
}

.blog-back-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Sidebar */
.blog-post-sidebar {
    position: sticky;
    top: 100px;
}

.blog-post-sidebar .sidebar-widget {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.blog-post-sidebar .widget-title {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-bg);
}

.blog-post-sidebar .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-post-sidebar .category-list li {
    border-bottom: 1px solid var(--border-color);
}

.blog-post-sidebar .category-list li:last-child {
    border-bottom: none;
}

.blog-post-sidebar .category-list a {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.blog-post-sidebar .category-list a:hover,
.blog-post-sidebar .category-list li.active a {
    color: var(--accent-primary);
}

.blog-post-sidebar .category-list li.active a {
    font-weight: 600;
}

/* Related Posts Section */
.blog-related-section {
    background: var(--bg-primary);
}

.blog-related-section .section-header {
    margin-bottom: 3rem;
}

.blog-related-section .section-header.centered {
    text-align: center;
}

.blog-related-section .section-tag {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.blog-related-section h2 {
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.blog-related-section .section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.related-post-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-primary);
}

.related-post-image {
    display: block;
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--text-muted);
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.related-post-category {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent-primary);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}

.related-post-category:hover {
    background: var(--accent-primary);
    color: white;
}

.related-post-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.related-post-title {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.related-post-title a {
    color: var(--text-primary);
    transition: color 0.2s;
}

.related-post-title a:hover {
    color: var(--accent-primary);
}

.related-post-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.2s;
}

.related-read-more:hover {
    gap: 0.75rem;
}

/* Blog Detail — Responsive */
@media (max-width: 1024px) {
    .blog-post-layout {
        grid-template-columns: 1fr 280px;
        gap: 2rem;
    }

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-post-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-post-hero {
        min-height: 400px;
        padding: 8rem 0 3rem;
    }

    .blog-post-hero h1 {
        font-size: 2rem;
    }

    .blog-post-meta-info {
        gap: 1rem;
    }

    .blog-post-layout {
        grid-template-columns: 1fr;
    }

    .blog-post-sidebar {
        position: static;
        order: 1;
    }

    .blog-post-main {
        order: 2;
    }

    .blog-post-body {
        padding: 2rem;
    }

    .blog-share-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-share-bottom .share-buttons {
        flex-direction: column;
    }

    .blog-share-bottom .share-btn {
        width: 100%;
        justify-content: center;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-post-hero {
        min-height: 350px;
        padding: 7rem 0 2rem;
    }

    .blog-post-hero h1 {
        font-size: 1.75rem;
    }

    .blog-post-category-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .meta-item {
        font-size: 0.85rem;
    }

    .blog-post-body {
        padding: 1.5rem;
    }

    .blog-post-body p,
    .blog-post-body li {
        font-size: 1rem;
    }

    .blog-post-body h2 {
        font-size: 1.5rem;
    }

    .blog-post-body h3 {
        font-size: 1.25rem;
    }

    .blog-related-section h2 {
        font-size: 1.75rem;
    }
}

/* Blog Detail — Dark Theme */
[data-theme="dark"] .blog-post-hero-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
}

[data-theme="dark"] .blog-post-body {
    background: var(--bg-card);
}

[data-theme="dark"] .blog-post-footer {
    background: var(--bg-card);
}

[data-theme="dark"] .blog-share-bar {
    background: var(--bg-card);
}

[data-theme="dark"] .related-post-card {
    background: var(--bg-card);
}

[data-theme="dark"] .blog-post-sidebar .sidebar-widget {
    background: var(--bg-card);
}

[data-theme="dark"] .blog-post-sidebar .newsletter-widget {
    background: linear-gradient(135deg, #064e3b, #065f46);
}

[data-theme="dark"] .related-post-placeholder {
    background: var(--bg-tertiary);
}
