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

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

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

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

.breadcrumb {
    padding: 10px 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    background: rgb(0 143 69);
}
.breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}
.breadcrumb-sep {
    margin: 0 8px;
    color: rgba(255,255,255,0.4);
}

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

/* ========================================
   TRUST CROSS-LINKS
======================================== */
.trust-crosslinks {
    padding: 60px 20px;
    background: var(--bg-soft);
}
.crosslinks-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.crosslinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.crosslink-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition-smooth);
}
.crosslink-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-green);
}
.crosslink-card i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}
.crosslink-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.crosslink-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

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

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

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

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

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

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

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

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

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

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

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

.top-nav.scrolled .brand-bd {
    color: #00703a;
}

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

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

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

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

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

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

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

.nav-link.active {
    color: white !important;
    background: #006b32;
    box-shadow: 0 10px 25px -5px rgba(0, 107, 50, 0.3);
}

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

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

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

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

.top-nav.scrolled .nav-btn:hover {
    background: #006b32;
    color: white;
}

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

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

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

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 3px auto;
    transition: var(--transition-smooth);
    border-radius: 10px;
    transform-origin: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1024px) {
    .nav-center {
        display: none;
    }
}

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

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

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

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

    .nav-actions {
        gap: 10px;
    }

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

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

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

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

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

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

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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

@media (max-width:768px) {
    .policy-header.benefits-hero {
        padding: 270px 12px 190px;
    }

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

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

    .ledger-tag::before {
        width: 4px;
        height: 4px;
    }
}

@media (max-width:480px) {
    .policy-header.benefits-hero {
        padding: 230px 0px 160px;
    }

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

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

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

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

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

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

/* ========================================
   QUALITY STANDARD SECTION
======================================== */
.standard-section {
    padding: 100px 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.standard-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse 60% 50% at 20% 15%, rgba(0, 166, 81, 0.008) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 80% 85%, rgba(0, 166, 81, 0.005) 0%, transparent 50%);
}

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

.standard-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.s-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0 0;
    position: relative;
}

.s-item-bar {
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), #10b981);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.s-item:hover .s-item-bar {
    width: 56px;
}

.s-item-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(0, 166, 81, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary-green);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
}

.s-item:hover .s-item-icon {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.12);
}

.s-item-body {
    flex: 1;
}

.s-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.s-item:hover .s-item-title {
    color: var(--primary-green);
}

.s-item-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .standard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

    .s-item {
        padding-top: 1rem;
    }
}

/* ========================================
   PILLARS SECTION
======================================== */
.pillars-section {
    padding: 100px 2rem;
    background: var(--bg-soft);
    position: relative;
}

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

.pillars-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid transparent;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--p-color);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.04);
}

.p-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--p-color);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.p-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition-smooth);
}

.pillar-card:hover .p-icon {
    background: linear-gradient(135deg, var(--p-color), var(--p-color));
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 8px 24px rgba(0, 166, 81, 0.2);
}

.p-icon i {
    font-size: 22px;
    color: var(--p-color);
    transition: color 0.3s ease;
}

.pillar-card:hover .p-icon i {
    color: white;
}

.p-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.4rem;
    transition: color 0.4s ease;
}

.p-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--p-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.p-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.p-bar {
    width: 40px;
    height: 3px;
    background: var(--p-color);
    border-radius: 3px;
    margin-top: 1.5rem;
    transition: width 0.5s ease;
}

.pillar-card:hover .p-bar {
    width: 60px;
}

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

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

/* ========================================
   METERS SECTION (dark)
======================================== */
.meters-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

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

.meters-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.meter-card {
    text-align: center;
    position: relative;
}

.meter-bar-wrap {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.meter-bar {
    height: 100%;
    width: 0%;
    background: var(--bar-color, #00A651);
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.meter-bar.animate {
    width: 0%;
    animation: meterBarGrow 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes meterBarGrow {
    from {
        width: 0%;
    }

    to {
        width: var(--bar-target, 85%);
    }
}

.meter-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 166, 81, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition-smooth);
}

.meter-icon i {
    font-size: 22px;
    color: var(--primary-green);
}

.meter-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.meter-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

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

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

    .meter-number {
        font-size: 2rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.knowledge-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* ══════════════════════════════════════
   ESSAY
   ══════════════════════════════════════ */
.kn-essay {
    position: relative;
}

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

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

/* ── Paragraph block ── */
.kn-paragraph-card {
    position: relative;
    padding: 0 0 0 4.2rem;
    margin-bottom: 0;
    transition: all 0.5s ease;
}

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

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

.conclusion-card .kn-pc-tag {
    color: #b45309;
}

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

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

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

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

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

/* ── Typewriter ── */
.kn-typed {
    display: inline;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

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

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

@keyframes knBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ── Bold & italic inside typed text ── */
.kn-typed strong {
    font-weight: 700;
    color: #1c1917;
    animation: knStyleIn 0.2s ease-out both;
}

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

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

    100% {
        opacity: 1;
    }
}

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

.conclusion-card .kn-typed strong {
    color: #92400e;
}

.conclusion-card .kn-typed em {
    color: #b45309;
}

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

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

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

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

@keyframes kpdBob {

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

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

/* ── Conclusion ── */
.conclusion-card {
    padding-bottom: 3rem;
}

.conclusion-card .kn-pc-text {
    border-left: 2px solid rgba(217, 119, 6, 0.15);
    padding-left: 1.25rem;
    font-size: 1.02rem;
    line-height: 1.9;
}

.conclusion-card .kn-pc-text strong {
    color: #92400e;
}

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

.kn-endmark-line {
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.12));
}

.kn-endmark-icon {
    font-size: 0.65rem;
    color: rgba(217, 119, 6, 0.2);
    animation: knEndPulse 3s ease-in-out infinite;
}

@keyframes knEndPulse {

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

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

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

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

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

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

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

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

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

    .kh-ornament::before,
    .kh-ornament::after {
        width: 36px;
    }
}

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

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

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

    .kn-header-sub {
        font-size: 0.85rem;
    }

    .kn-paragraph-card {
        padding: 0 0 0 1rem;
    }

    .kn-pc-tag {
        font-size: 0.85rem;
    }

    .kn-pc-text {
        font-size: 0.95rem;
    }

    .kn-essay::before {
        display: none;
    }

    .kn-essay::after {
        display: none;
    }

    .kn-paragraph-divider {
        padding: 1.5rem 0 0.75rem 1rem;
    }

    .kpd-icon {
        font-size: 0.5rem;
    }
}

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

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

    .kn-pc-text {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .kh-ornament::before,
    .kh-ornament::after {
        width: 24px;
    }
}

/* ========================================
   QUALITY QUOTE SECTION — white premium
======================================== */
.quality-quote-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 110px 2rem 100px;
    text-align: center;
}

.qq-ambient {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.qq-glow-top {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(0, 166, 81, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.qq-glow-bottom {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 166, 81, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.qq-subtle-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

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

.qq-label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.qq-label-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.2));
}

.qq-label-row .qq-label-line:last-child {
    background: linear-gradient(90deg, rgba(0, 166, 81, 0.2), transparent);
}

.qq-card {
    position: relative;
    padding: 3.5rem 4rem 3rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #ffffff 0%, #fafff8 40%, #f6fdf4 100%);
    border: 1px solid rgba(0, 166, 81, 0.06);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.02),
        0 20px 60px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(0, 166, 81, 0.02);
    overflow: hidden;
    transition: box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.qq-card:hover {
    box-shadow:
        0 4px 28px rgba(0, 0, 0, 0.03),
        0 30px 80px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 166, 81, 0.04);
}

.qq-card-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at 35% 25%, rgba(0, 166, 81, 0.02), transparent 50%);
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.qq-card:hover .qq-card-shine {
    opacity: 0.6;
}

.qq-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.02), rgba(0, 166, 81, 0.06));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.qq-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-green), var(--primary-light), var(--primary-green), transparent);
    opacity: 0.3;
}

.qq-mark-wrap {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-green), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 24px rgba(0, 166, 81, 0.15),
        0 0 0 4px rgba(0, 166, 81, 0.06);
    z-index: 3;
}

.qq-mark-icon {
    color: white;
    font-size: 1.1rem;
}

.qq-typewriter-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    min-height: 4em;
}

.qq-text {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 500;
    color: #334155;
    line-height: 1.95;
    font-style: italic;
    letter-spacing: 0.15px;
    max-width: 700px;
    margin: 0.75rem auto 0;
    text-align: center;
}

.qq-text .qq-char {
    display: inline;
    opacity: 0;
    animation: qqCharFadeIn 0.04s ease forwards;
}

@keyframes qqCharFadeIn {
    to {
        opacity: 1;
    }
}

.qq-type-cursor {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 300;
    color: var(--primary-green);
    animation: qqCursorBlink 0.7s infinite;
    line-height: 1.95;
    margin-top: 0.75rem;
    opacity: 0;
}

.qq-type-cursor.show {
    opacity: 1;
}

@keyframes qqCursorBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.qq-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto 1.5rem;
    max-width: 300px;
}

.qq-divider::before,
.qq-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.12), transparent);
}

.qq-divider-diamond {
    font-size: 0.5rem;
    color: var(--primary-green);
    opacity: 0.3;
}

.qq-attribution {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 2rem;
    background: rgba(0, 166, 81, 0.03);
    border-radius: 500px;
    border: 1px solid rgba(0, 166, 81, 0.06);
    transition: all 0.5s ease;
}

.qq-card:hover .qq-attribution {
    background: rgba(0, 166, 81, 0.05);
    border-color: rgba(0, 166, 81, 0.1);
    box-shadow: 0 4px 16px rgba(0, 166, 81, 0.04);
}

.qq-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.15);
}

.qq-byline {
    text-align: left;
}

.qq-byline strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 0.2px;
}

.qq-byline .qq-amp {
    color: var(--primary-green);
    font-weight: 400;
    font-style: italic;
}

.qq-byline span {
    font-size: 0.7rem;
    color: #94a3b8;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.qq-footer {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.qq-footer-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.qq-footer-bar {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.2), transparent);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .quality-quote-section {
        padding: 70px 1.25rem 80px;
    }

    .qq-card {
        padding: 2.5rem 1.5rem 2rem;
    }

    .qq-text {
        font-size: 1rem;
    }

    .qq-type-cursor {
        font-size: 1rem;
    }

    .qq-attribution {
        flex-direction: column;
        text-align: center;
        padding: 0.75rem 1.25rem;
        gap: 0.6rem;
    }

    .qq-byline {
        text-align: center;
    }

    .qq-mark-wrap {
        width: 44px;
        height: 44px;
        top: -18px;
    }

    .qq-mark-icon {
        font-size: 0.95rem;
    }

    .qq-label-line {
        width: 30px;
    }

    .qq-avatar {
        width: 36px;
        height: 36px;
    }
}

/* ========================================
   DIFFERENCE SECTION (comparison)
======================================== */
.difference-section {
    padding: 100px 2rem;
    background: linear-gradient(160deg, #ffffff 0%, #f6fdf9 30%, #f0fdf4 60%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

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

.diff-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    animation: diffBlob 18s ease-in-out infinite alternate;
}

.diff-blob.da {
    width: 500px;
    height: 500px;
    background: rgba(0, 166, 81, 0.06);
    top: -150px;
    right: -100px;
}

.diff-blob.db {
    width: 400px;
    height: 400px;
    background: rgba(56, 189, 248, 0.04);
    bottom: -100px;
    left: -80px;
    animation-delay: -6s;
}

.diff-blob.dc {
    width: 300px;
    height: 300px;
    background: rgba(0, 166, 81, 0.04);
    top: 40%;
    left: 40%;
    animation-delay: -12s;
}

@keyframes diffBlob {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(50px, -50px) scale(1.3);
        opacity: 0.8;
    }
}

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

.difference-header {
    text-align: center;
    margin-bottom: 4rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.diff-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.diff-glow {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at 30% 40%, rgba(0, 166, 81, 0.04), transparent 50%);
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.diff-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 40px rgba(0, 166, 81, 0.04);
    border-color: rgba(0, 166, 81, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.diff-card:hover .diff-glow {
    opacity: 1;
}

.diff-win {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.diff-lose {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.diff-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: all 0.5s ease;
}

.diff-card:hover .diff-icon.win-bg {
    background: var(--primary-green) !important;
    color: white !important;
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.win-bg {
    background: rgba(0, 166, 81, 0.08);
    color: var(--primary-green);
}

.lose-bg {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
}

.diff-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.3rem;
    transition: color 0.4s ease;
}

.diff-card:hover .diff-body h4 {
    color: var(--primary-green);
}

.diff-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.diff-lose .diff-body h4 {
    color: #94a3b8;
}

.diff-lose .diff-body p {
    color: #b0b8c4;
    font-style: italic;
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.3);
}

.diff-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    gap: 0.75rem;
}

.diff-divider::before,
.diff-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 166, 81, 0.12), transparent);
}

.diff-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    padding: 4px 0;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 500px;
    color: white;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    transition: all 0.5s ease;
}

.diff-card:hover .diff-badge {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

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

@media (max-width: 640px) {
    .difference-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .diff-card {
        backdrop-filter: none;
        background: white;
    }
}

/* ========================================
   STORIES SECTION (testimonials)
======================================== */
.stories-section {
    padding: 100px 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.stories-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse 70% 60% at 30% 25%, rgba(0, 166, 81, 0.012) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 70% 75%, rgba(0, 166, 81, 0.008) 0%, transparent 50%);
}

.stories-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 600px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.05) 15%, rgba(0, 166, 81, 0.08) 50%, rgba(0, 166, 81, 0.05) 85%, transparent);
    pointer-events: none;
    z-index: 1;
}

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

.stories-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.stories-track {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
}

.story-block {
    min-width: 100%;
    scroll-snap-align: start;
    display: flex;
    gap: 2rem;
    padding: 0.5rem 0;
}

.sb-accent {
    flex-shrink: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-green) 0%, #10b981 100%);
    border-radius: 2px;
    opacity: 0.3;
}

.sb-body {
    flex: 1;
    min-width: 0;
}

.sb-quote-mark {
    margin-bottom: 1rem;
    line-height: 1;
}

.sb-quote-mark i {
    font-size: 1.6rem;
    color: var(--primary-green);
    opacity: 0.2;
}

.sb-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--secondary-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.sb-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
}

.sb-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sb-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 1px;
}

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

.stories-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.s-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 166, 81, 0.12);
    background: white;
    color: var(--primary-green);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.s-arrow:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    box-shadow: 0 4px 16px rgba(0, 166, 81, 0.15);
}

.s-dots {
    display: flex;
    gap: 8px;
}

.sdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.15);
    cursor: pointer;
    transition: all 0.4s ease;
}

.sdot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--primary-green);
}

@media (max-width: 768px) {
    .stories-section {
        padding: 60px 1.5rem;
    }

    .story-block {
        gap: 1.25rem;
    }

    .sb-accent {
        width: 2px;
    }

    .sb-text {
        font-size: 1rem;
    }

    .s-arrow {
        width: 38px;
        height: 38px;
    }
}

/* ========================================
   STANDARDS SECTION — 12-point audit
======================================== */
.standards-section {
    padding: 100px 2rem;
    background: white;
    position: relative;
    overflow: hidden;
}

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

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

.standards-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.standards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.audit-item:hover {
    transform: translateX(8px);
    border-color: rgba(0, 166, 81, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.audit-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    min-width: 50px;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.audit-item:hover .audit-num {
    opacity: 0.8;
}

.audit-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.4rem;
}

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

@media (max-width: 640px) {
    .audit-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.25rem;
    }

    .audit-num {
        font-size: 1.4rem;
        min-width: auto;
    }
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section-about {
    padding: 100px 2rem;
    background: var(--bg-soft);
}

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

.faq-header-about {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid-about {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-about {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

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

.faq-question-about {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faq-question-about h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-dark);
    transition: var(--transition-smooth);
    flex: 1;
}

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

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

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

.faq-answer-about {
    height: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ========================================
   PARTNER MARQUEE
======================================== */
.partner-marquee {
    background: #ffffff;
    padding: 10px 0;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

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

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

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

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

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

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: 120px 2rem 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 60% at 50% 40%, rgba(0, 166, 81, 0.02) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 20% 20%, rgba(0, 166, 81, 0.008) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 80%, rgba(0, 166, 81, 0.006) 0%, transparent 60%);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 120px,
            rgba(0, 166, 81, 0.008) 120px,
            rgba(0, 166, 81, 0.008) 121px);
    background-position: 0 0;
    pointer-events: none;
    z-index: 0;
}

.cta-leaf-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 280px;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 100% 100% at 0% 50%, rgba(0, 166, 81, 0.015) 0%, transparent 70%);
    border-radius: 0 50% 50% 0;
}

.cta-leaf-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 280px;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 100% 100% at 100% 50%, rgba(0, 166, 81, 0.015) 0%, transparent 70%);
    border-radius: 50% 0 0 50%;
}

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

.cta-content {
    position: relative;
    text-align: center;
}

.cta-header-block {
    margin-bottom: 1.25rem;
}

.cta-label-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2rem;
}

.cta-label-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.15), transparent);
}

.cta-label-text {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--primary-green);
    white-space: nowrap;
    opacity: 0.6;
}

.cta-heading {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--secondary-dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.cta-highlight {
    background: linear-gradient(135deg, #00A651 0%, #059669 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: ctaGradientShift 6s ease-in-out infinite;
}

@keyframes ctaGradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.cta-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 1.5rem auto 2.75rem;
    line-height: 1.8;
    font-weight: 400;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 20px 44px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(0, 166, 81, 0.15);
}

.cta-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    border-radius: inherit;
}

.cta-primary:hover {
    background: #00703a;
    border-color: #00703a;
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 166, 81, 0.2);
}

.cta-primary i {
    transition: transform 0.3s ease;
}

.cta-primary:hover i {
    transform: translateX(5px);
}

.cta-secondary {
    background: #ffffff;
    color: var(--primary-green);
    border-color: rgba(0, 166, 81, 0.2);
    position: relative;
}

.cta-secondary::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.05), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.cta-secondary:hover::after {
    opacity: 1;
}

/* border-top decorative separator */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 600px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.06) 15%, rgba(0, 166, 81, 0.1) 50%, rgba(0, 166, 81, 0.06) 85%, transparent);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 70px 1.5rem 60px;
    }

    .cta-leaf-left,
    .cta-leaf-right {
        display: none;
    }

    .cta-label-bar {
        gap: 12px;
    }

    .cta-label-line {
        width: 36px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
    }

    .cta-description {
        font-size: 1rem;
    }
}

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

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

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

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

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

.footer-brand-col {
    padding-right: 20px;
}

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

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

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

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

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

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

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

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

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

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

.footer-col {
    padding-top: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.payment-card i {
    color: var(--primary-green);
}

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

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

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

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

.copyright p strong {
    color: white;
}

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

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

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

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