: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;
    --gold: #f59e0b;
    --silver: #94a3b8;
    --bronze: #cd7f32;
}

* {
    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);
}

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

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

.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 — matches trust page
======================================== */
.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%; }
}

/* ========================================
   SECTION LABELS (reused)
======================================== */
.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-title span:not(.text-gradient) {
    background: linear-gradient(135deg, var(--primary-green), #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ========================================
   HERO — TYPEWRITER STYLE (eco-friendly pattern)
======================================== */
.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; }
.policy-header.benefits-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; z-index: 1; }
.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; }
.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); }
.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) { .benefits-hero h1 { white-space: normal; } }

/* ========================================
   INTRODUCTION
======================================== */
.intro-section {
    padding: 100px 2rem;
    background: white;
    position: relative;
}

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

.intro-content { text-align: center; }

.intro-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.2rem;
}

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

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.intro-stat { text-align: center; }

.intro-stat-num {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--secondary-dark);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.intro-stat-unit {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-left: 2px;
}

.intro-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 0.3rem;
}

/* ========================================
   TOP 10 COUNTDOWN LIST — UNIQUE
======================================== */
.top10-section {
    padding: 120px 2rem;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.top10-item {
    display: flex;
    align-items: stretch;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
    position: relative;
}

.top10-item:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(0,166,81,0.1);
}

.t10-rank {
    width: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-muted);
    position: relative;
}

.t10-rank span { position: relative; z-index: 1; }

.t10-body {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem 1.5rem 1.5rem 1.2rem;
}

.t10-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,166,81,0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-green);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.top10-item:hover .t10-icon { background: var(--primary-green); color: white; transform: scale(1.08) rotate(-4deg); }

.t10-info { flex: 1; }

.t10-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
}

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

.t10-tag {
    display: inline-block;
    padding: 2px 12px;
    background: rgba(0,166,81,0.06);
    color: var(--primary-green);
    border-radius: 500px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.t10-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.t10-stat {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.t10-stat span { color: var(--primary-green); font-weight: 700; }

.t10-order-circle {
    width: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.t10-order-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.top10-item:hover .t10-order-num { background: var(--primary-green); color: white; }

/* Featured (FlorianBD) item */
.featured-item {
    border: 2px solid rgba(0,166,81,0.15);
    background: linear-gradient(135deg, rgba(0,166,81,0.02), white);
}

.featured-item:hover { border-color: var(--primary-green); }

.featured-rank { background: rgba(0,166,81,0.06); }

.featured-icon { background: var(--primary-green) !important; color: white !important; }

.featured-tag { background: var(--primary-green) !important; color: white !important; }

.t10-badge {
    display: inline-block;
    background: rgba(0,166,81,0.08);
    color: var(--primary-green);
    padding: 1px 10px;
    border-radius: 500px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.t10-badge.gold-badge { background: rgba(245,158,11,0.1); color: var(--gold); }

.t10-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.5rem;
    padding: 6px 18px;
    background: var(--primary-green);
    color: white;
    border-radius: 500px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.t10-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,166,81,0.2); }

.rank-2-bg .t10-rank { background: rgba(148,163,184,0.06); }
.rank-1-bg { border-color: rgba(245,158,11,0.12); }
.rank-1-bg .t10-rank { background: rgba(245,158,11,0.08); }
.featured-circle .t10-order-num { background: var(--primary-green); color: white; }
.gold-circle .t10-order-num { background: var(--gold); color: white; }

/* Rank progress */
.rank-progress-track {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 200px;
    background: rgba(0,0,0,0.04);
    border-radius: 3px;
    z-index: 100;
    overflow: hidden;
    display: none;
}

.rank-progress-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--primary-green), var(--gold));
    border-radius: 3px;
    transition: height 0.3s ease;
}

.rank-progress-label {
    position: absolute;
    right: 16px;
    top: 0;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary-green);
    background: white;
    padding: 2px 6px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* ========================================
   FLORIANBD HIGHLIGHT
======================================== */
.highlight-section {
    padding: 120px 2rem;
    background: linear-gradient(160deg, #f8fafc 0%, #f0fdf4 30%, #ecfdf5 70%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

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

.highlight-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    animation: hlOrb 18s ease-in-out infinite alternate;
}

.highlight-orb.hg-1 { width: 500px; height: 500px; background: rgba(0,166,81,0.05); top: -150px; right: -100px; }
.highlight-orb.hg-2 { width: 400px; height: 400px; background: rgba(56,189,248,0.03); bottom: -100px; left: -80px; animation-delay: -8s; }

@keyframes hlOrb { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(50px,-40px) scale(1.1); } }

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

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

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

.highlight-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.highlight-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); border-color: rgba(0,166,81,0.15); }

.hl-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0,166,81,0.08), rgba(0,166,81,0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.highlight-card:hover .hl-icon { background: var(--primary-green); color: white; transform: scale(1.1) rotate(-6deg); }

.hl-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
}

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

.hl-bar {
    height: 3px;
    background: rgba(0,0,0,0.04);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.hl-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-light));
    border-radius: 2px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.16,1,0.3,1);
}

.highlight-card.animate .hl-bar span { width: var(--target-width, 95%); }

/* ========================================
   SPECIALIST ADVANTAGE
======================================== */
.specialist-section {
    padding: 120px 2rem;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
    color: white;
}

.specialist-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(0,166,81,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(0,166,81,0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.specialist-header { text-align: center; margin-bottom: 4rem; }
.specialist-header .section-label { color: var(--primary-light); }
.specialist-header .section-title { color: white; }
.specialist-header .section-description { color: rgba(255,255,255,0.5); }

.specialist-content { display: flex; flex-direction: column; gap: 3rem; }

.specialist-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.sp-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0,166,81,0.03), transparent 70%);
    pointer-events: none;
}

.sp-left, .sp-right {
    text-align: center;
    position: relative;
    z-index: 1;
}

.sp-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-vs span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), #d97706);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: white;
    box-shadow: 0 4px 20px rgba(245,158,11,0.3);
}

.sp-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    background: rgba(255,255,255,0.06);
    color: white;
}

.sp-icon.highlight-green { background: rgba(0,166,81,0.15); color: var(--primary-light); }

.sp-left h3, .sp-right h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.sp-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.sp-text strong { color: white; }

.sp-stat { margin-top: auto; }
.sp-stat-num { font-size: 1.8rem; font-weight: 900; color: var(--primary-light); display: block; line-height: 1; }
.sp-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0.2rem; }

.specialist-chart {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.schart-item { display: flex; align-items: center; gap: 1.5rem; }

.schart-label {
    width: 280px;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-align: right;
}

.schart-bar-wrap {
    flex: 1;
    height: 10px;
    background: rgba(255,255,255,0.06);
    border-radius: 5px;
    overflow: hidden;
}

.schart-bar {
    height: 100%;
    border-radius: 5px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.16,1,0.3,1);
}

.schart-general { background: linear-gradient(90deg, var(--silver), #94a3b8); }
.schart-specialist { background: linear-gradient(90deg, var(--primary-green), var(--primary-light)); }
.schart-trust { background: linear-gradient(90deg, var(--gold), #f59e0b); }

.schart-value {
    width: 180px;
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

.schart-bar.animated { width: var(--target-w, 88%); }

/* ========================================
   KNOWLEDGE SECTION — SAME STYLE
======================================== */
.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; }
.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); }

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

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

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

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

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

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

@keyframes kpdBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(3px); } }

.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; }
.conclusion-card .kn-pc-text em { color: #b45309; }

@media (max-width: 1200px) { .knowledge-container { max-width: 100%; } }

/* ========================================
   COMPARISON TABLE — UNIQUE TABLE STYLE
======================================== */
.table-section {
    padding: 120px 2rem;
    background: white;
    position: relative;
    overflow: hidden;
}

.table-bg {
    position: absolute;
    inset: 0;
    background:
        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;
}

.table-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.table-header { text-align: center; margin-bottom: 4rem; }

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table thead {
    background: var(--secondary-dark);
}

.comparison-table th {
    padding: 18px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    border-bottom: 2px solid rgba(255,255,255,0.05);
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    color: var(--text-muted);
    font-weight: 500;
}

.comparison-table tbody tr {
    transition: var(--transition-smooth);
}

.comparison-table tbody tr:not(.highlighted-row):hover {
    background: rgba(0,166,81,0.02);
    transform: translateX(4px);
}

.td-rank {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--secondary-dark);
    width: 50px;
}

.td-name {
    font-weight: 700;
    color: var(--secondary-dark);
}

.td-tag {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(0,166,81,0.06);
    color: var(--primary-green);
    border-radius: 500px;
    font-size: 0.75rem;
    font-weight: 600;
}

.td-grocery { background: rgba(0,166,81,0.06); color: var(--primary-green); }
.td-plant { background: rgba(0,166,81,0.1); color: var(--primary-green); }
.td-electronics { background: rgba(56,189,248,0.06); color: #0284c7; }
.td-book { background: rgba(139,92,246,0.06); color: #7c3aed; }
.td-beauty { background: rgba(236,72,153,0.06); color: #db2777; }
.td-food { background: rgba(245,158,11,0.06); color: #d97706; }
.td-deals { background: rgba(239,68,68,0.06); color: #dc2626; }

/* Highlighted row */
.highlighted-row {
    background: linear-gradient(135deg, rgba(0,166,81,0.04), rgba(0,166,81,0.01)) !important;
    border-left: 3px solid var(--primary-green);
    position: relative;
}

.highlighted-row td {
    color: var(--secondary-dark);
}

.highlighted-row .crown-icon {
    color: var(--gold);
    font-size: 0.85rem;
    margin-left: 4px;
    animation: crownGlow 2s ease-in-out infinite;
}

@keyframes crownGlow { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.rank-1-cell { color: var(--gold) !important; }
.rank-2-cell { color: var(--silver) !important; }
.rank-3-cell { color: var(--primary-green) !important; }

.highlight-name { color: var(--primary-green) !important; }

.highlighted-row:hover { background: linear-gradient(135deg, rgba(0,166,81,0.08), rgba(0,166,81,0.02)) !important; }

/* ========================================
   FAQ — SAME STYLE
======================================== */
.faq-section { padding: 120px 2rem; background: var(--bg-soft); position: relative; }
.faq-bg { position: absolute; inset: 0; pointer-events: none; }
.faq-container { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
}

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

.faq-q {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,166,81,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon { background: var(--primary-green); }
.faq-icon i { font-size: 1rem; color: var(--primary-green); transition: var(--transition-smooth); }
.faq-item.active .faq-icon i { color: white; }

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

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

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

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

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

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

/* ========================================
   CTA — SAME STYLE
======================================== */
.cta-section { padding: 0; background: linear-gradient(160deg, #f8fafc 0%, #f0fdf4 40%, #ecfdf5 100%); position: relative; overflow: hidden; isolation: isolate; }
.cta-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(180px); }
.cta-orb-1 { width: 700px; height: 700px; background: rgba(0,166,81,0.05); top: -300px; right: -200px; animation: ctaOrbFloat 25s ease-in-out infinite alternate; }
.cta-orb-2 { width: 500px; height: 500px; background: rgba(56,189,248,0.03); bottom: -200px; left: -150px; animation: ctaOrbFloat 30s ease-in-out infinite alternate-reverse; }
.cta-orb-3 { width: 300px; height: 300px; background: rgba(5,150,105,0.03); top: 40%; left: 30%; animation: ctaOrbFloat 20s ease-in-out infinite alternate; }

@keyframes ctaOrbFloat { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(50px,-40px) scale(1.15); } }

.cta-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(0,166,81,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
}

.cta-inner { max-width: 1200px; margin: 0 auto; padding: 120px 2rem; position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.cta-col-text { position: relative; }
.cta-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 24px; background: linear-gradient(135deg, rgba(0,166,81,0.08), rgba(0,166,81,0.02)); border: 1.5px solid rgba(0,166,81,0.12); border-radius: 500px; font-size: 0.8rem; font-weight: 700; color: var(--primary-green); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 2rem; }
.cta-badge i { font-size: 0.85rem; }
.cta-heading { font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 800; color: #0f172a; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 1.2rem; }
.cta-em { background: linear-gradient(135deg, var(--primary-green), #059669); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-sub { font-size: 1rem; color: #64748b; line-height: 1.8; margin-bottom: 2.5rem; max-width: 520px; }
.cta-sub strong { color: var(--primary-green); font-weight: 600; }
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.cta-btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 32px; font-size: 0.95rem; font-weight: 700; border-radius: 500px; text-decoration: none; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); position: relative; overflow: hidden; border: none; cursor: pointer; }
.cta-btn-primary { background: linear-gradient(135deg, var(--primary-green) 0%, #059669 100%); color: white; box-shadow: 0 8px 30px rgba(0,166,81,0.25); }
.cta-btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px rgba(0,166,81,0.35); }
.cta-btn-secondary { background: transparent; color: #0f172a; border: 2px solid rgba(0,0,0,0.08); }
.cta-btn-secondary:hover { background: white; border-color: var(--primary-green); color: var(--primary-green); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }

.cta-col-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cta-stat-card { background: white; border-radius: 20px; padding: 1.5rem; display: flex; align-items: center; gap: 1rem; border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 4px 20px rgba(0,0,0,0.02); transition: all 0.4s cubic-bezier(0.16,1,0.3,1); }
.cta-stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,166,81,0.08); border-color: rgba(0,166,81,0.1); }
.cta-stat-icon { width: 48px; height: 48px; background: linear-gradient(135deg, rgba(0,166,81,0.08), rgba(0,166,81,0.02)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary-green); flex-shrink: 0; }
.cta-stat-body { display: flex; flex-direction: column; }
.cta-stat-num { font-size: 1.5rem; font-weight: 800; color: #0f172a; line-height: 1.2; letter-spacing: -0.5px; }
.cta-stat-label { font-size: 0.78rem; color: #94a3b8; font-weight: 500; }

/* ========================================
   SUPER FOOTER — SAME STYLE
======================================== */
.super-footer { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); position: relative; margin-top: -1px; color: white; }
.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; }
.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; }
.input-wrapper { display: flex; background: rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s ease; }
.input-wrapper:focus-within { border-color: var(--primary-green); box-shadow: 0 0 20px rgba(0,166,81,0.15); }
.input-wrapper input { flex: 1; padding: 14px 18px; background: transparent; border: none; outline: none; color: white; font-size: 0.95rem; font-family: inherit; }
.input-wrapper input::placeholder { color: #64748b; }
.submit-btn { padding: 14px 20px; background: var(--primary-green); border: none; color: white; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; }
.submit-btn:hover { background: #008f45; }
.trust-badges { display: flex; gap: 15px; flex-wrap: wrap; }
.trust-badges .badge { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: #94a3b8; background: rgba(255,255,255,0.05); padding: 6px 12px; border-radius: 20px; }
.trust-badges .badge i { color: var(--primary-green); }

.payment-section { border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 25px 30px; }
.payment-header { text-align: center; margin-bottom: 20px; }
.payment-header span { font-size: 0.85rem; color: #64748b; text-transform: uppercase; letter-spacing: 2px; }
.payment-methods { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.payment-card { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); padding: 10px 18px; border-radius: 10px; font-size: 0.9rem; color: #94a3b8; transition: all 0.3s ease; }
.payment-card i { color: var(--primary-green); }
.payment-card:hover { background: rgba(0,166,81,0.15); color: white; transform: translateY(-3px); }

.footer-bottom { padding: 25px 30px; background: rgba(0,0,0,0.2); }
.footer-bottom-content { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.copyright p { color: #64748b; font-size: 0.9rem; }
.copyright p strong { color: white; }
.copyright p i { color: #ef4444; margin: 0 4px; }
.legal-links { display: flex; gap: 25px; flex-wrap: wrap; }
.legal-links a { color: #64748b; text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.legal-links a:hover { color: var(--primary-green); }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .footer-container { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .footer-brand-col { grid-column: span 3; text-align: center; padding-right: 0; }
    .footer-social { justify-content: center; }
}

@media (max-width: 1024px) {
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .specialist-card { grid-template-columns: 1fr; gap: 1.5rem; }
    .sp-vs { transform: rotate(90deg); }
    .schart-item { flex-wrap: wrap; gap: 0.5rem; }
    .schart-label { width: 100%; text-align: left; }
    .schart-value { width: 100%; }
    .cta-inner { grid-template-columns: 1fr; gap: 3rem; padding: 80px 2rem; }
    .cta-sub { max-width: 100%; }
    .cta-col-stats { max-width: 500px; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .footer-brand-col { grid-column: span 2; }
}

@media (max-width: 768px) {
    .intro-section { padding: 70px 1.5rem; }
    .intro-stats { gap: 1.5rem; flex-wrap: wrap; }
    .intro-stat-num { font-size: 2rem; }
    .top10-section { padding: 80px 1.5rem; }
    .t10-rank { width: 50px; min-width: 50px; font-size: 1.2rem; }
    .t10-body { padding: 1rem; gap: 0.8rem; flex-wrap: wrap; }
    .t10-icon { width: 40px; height: 40px; font-size: 1rem; }
    .t10-order-circle { display: none; }
    .highlight-section { padding: 80px 1.5rem; }
    .highlight-grid { grid-template-columns: 1fr; }
    .specialist-section { padding: 80px 1.5rem; }
    .specialist-card { padding: 1.5rem; }
    .knowledge-section { padding: 80px 1.25rem 100px; }
    .kn-essay::before, .kn-essay::after { display: none; }
    .kn-paragraph-card { padding: 0 0 0 3rem; }
    .kn-paragraph-divider { padding: 1.25rem 0 0.75rem 3rem; }
    .kn-pc-text { font-size: 0.92rem; }
    .table-section { padding: 80px 1.5rem; }
    .comparison-table { font-size: 0.78rem; }
    .comparison-table th, .comparison-table td { padding: 12px 10px; }
    .faq-section { padding: 80px 1.5rem; }
    .faq-q { padding: 16px 18px; gap: 12px; }
    .faq-q h3 { font-size: 0.9rem; }
    .faq-a-inner { padding: 0 18px 18px 70px; }
    .cta-inner { padding: 60px 1.5rem; }
    .cta-heading { font-size: 1.8rem; }
    .cta-col-stats { grid-template-columns: 1fr; max-width: 100%; }
    .cta-buttons { flex-direction: column; }
    .cta-btn { width: 100%; justify-content: center; }
    .footer-container { grid-template-columns: 1fr; padding: 30px 20px; }
    .footer-brand-col { grid-column: span 1; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-col { display: flex; flex-direction: column; align-items: flex-start; text-align: center; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .schart-label { font-size: 0.78rem; }
}

/* ========================================
   MARKET STATISTICS SECTION
======================================== */
.market-section { padding: 100px 2rem; background: var(--bg-soft); position: relative; }
.market-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,166,81,0.02) 0%, rgba(15,23,42,0.02) 100%); pointer-events: none; }
.market-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.market-header { text-align: center; margin-bottom: 50px; }
.market-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.market-stat-card { background: #fff; border-radius: var(--radius-lg); padding: 30px; text-align: center; box-shadow: var(--shadow-premium); border: 1px solid rgba(0,0,0,0.04); transition: var(--transition-smooth); }
.market-stat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -10px rgba(0,0,0,0.1); }
.market-stat-card i { font-size: 2rem; color: var(--primary-green); margin-bottom: 16px; }
.msc-num { display: block; font-size: 2rem; font-weight: 900; color: var(--secondary-dark); margin-bottom: 4px; }
.msc-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-main); margin-bottom: 4px; }
.msc-sub { display: block; font-size: 0.78rem; color: var(--text-muted); }
.market-insight { margin-bottom: 40px; }
.mi-card { display: flex; align-items: flex-start; gap: 16px; background: #fff; padding: 28px 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-premium); border-left: 4px solid var(--primary-green); }
.mi-card i { font-size: 1.8rem; color: var(--primary-green); flex-shrink: 0; }
.mi-text h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary-dark); }
.mi-text p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.market-breakdown { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-premium); }
.mb-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; color: var(--secondary-dark); text-align: center; }
.mb-grid { display: flex; flex-direction: column; gap: 14px; }
.mb-item { display: grid; grid-template-columns: 180px 1fr 50px 100px; align-items: center; gap: 16px; }
.mb-cat { font-size: 0.85rem; font-weight: 600; color: var(--secondary-dark); }
.mb-bar-wrap { height: 18px; background: #e2e8f0; border-radius: 100px; overflow: hidden; }
.mb-bar { height: 100%; background: var(--primary-green); border-radius: 100px; transition: width 1.2s ease; }
.mb-bar-orange { background: #ff6b00; }
.mb-bar-green { background: var(--primary-green); }
.mb-bar-purple { background: #7c3aed; }
.mb-bar-blue { background: #3b82f6; }
.mb-bar-pink { background: #ec4899; }
.mb-bar-red { background: #ef4444; }
.mb-pct { font-size: 0.85rem; font-weight: 700; color: var(--secondary-dark); }
.mb-leader { font-size: 0.78rem; color: var(--text-muted); }

/* ========================================
   CATEGORY LEADERS SECTION
======================================== */
.category-section { padding: 100px 2rem; background: #fff; }
.category-container { max-width: 1200px; margin: 0 auto; }
.category-header { text-align: center; margin-bottom: 50px; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 30px; }
.cat-card { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 30px; position: relative; border: 1px solid rgba(0,0,0,0.04); transition: var(--transition-smooth); }
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -10px rgba(0,0,0,0.08); }
.cat-card-featured { background: linear-gradient(135deg, rgba(0,166,81,0.05) 0%, #fff 100%); border: 2px solid rgba(0,166,81,0.2); }
.cat-rank { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: var(--secondary-dark); color: #fff; font-size: 0.8rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.cat-rank-1 { background: #f59e0b; }
.cat-rank-2 { background: #94a3b8; }
.cat-rank-3 { background: var(--primary-green); }
.cat-rank-4, .cat-rank-5, .cat-rank-6 { background: #e2e8f0; color: var(--text-muted); }
.cat-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(245,158,11,0.1); color: #f59e0b; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.cat-icon-orange { background: rgba(255,107,0,0.1); color: #ff6b00; }
.cat-icon-green { background: rgba(0,166,81,0.1); color: var(--primary-green); }
.cat-icon-purple { background: rgba(124,58,237,0.1); color: #7c3aed; }
.cat-icon-blue { background: rgba(59,130,246,0.1); color: #3b82f6; }
.cat-icon-pink { background: rgba(236,72,153,0.1); color: #ec4899; }
.cat-name { font-size: 1.1rem; font-weight: 700; color: var(--secondary-dark); margin-bottom: 4px; }
.cat-name-green { color: var(--primary-green); }
.cat-domain { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 12px; font-weight: 500; }
.cat-domain-green { color: var(--primary-green); font-weight: 600; }
.cat-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.cat-stat { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.cat-stat:last-of-type { border-bottom: none; }
.cat-stat-label { font-size: 0.78rem; color: var(--text-muted); }
.cat-stat-val { font-size: 0.85rem; font-weight: 700; color: var(--secondary-dark); }
.cat-stat-val-green { color: var(--primary-green); }
.cat-badge { display: inline-block; margin-top: 12px; background: rgba(0,166,81,0.12); color: var(--primary-green); font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; }
.category-note { display: flex; align-items: flex-start; gap: 12px; background: var(--bg-soft); padding: 20px 24px; border-radius: var(--radius-md); font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; border-left: 3px solid var(--primary-green); }
.category-note i { color: var(--primary-green); font-size: 1.1rem; margin-top: 2px; }

/* ========================================
   TRUST & SATISFACTION SECTION
======================================== */
.trust-section { padding: 100px 2rem; background: var(--bg-soft); position: relative; }
.trust-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 30%, rgba(0,166,81,0.03) 0%, transparent 60%); pointer-events: none; }
.trust-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.trust-header { text-align: center; margin-bottom: 50px; }
.trust-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-premium); margin-bottom: 40px; }
.trust-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 700px; }
.tt-row { display: grid; grid-template-columns: 50px 1.8fr 1fr 1.5fr 1fr 1fr; align-items: center; border-bottom: 1px solid rgba(0,0,0,0.04); }
.tt-row:last-child { border-bottom: none; }
.tt-row-head { background: var(--secondary-dark); color: #fff; font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; }
.tt-cell { padding: 14px 16px; font-size: 0.88rem; }
.tt-cell-rank { font-weight: 800; color: var(--secondary-dark); text-align: center; }
.tt-row-head .tt-cell-rank { color: rgba(255,255,255,0.7); }
.tt-cell-platform { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.tt-icon-green { color: var(--primary-green); }
.tt-icon-pink { color: #ec4899; }
.tt-icon-purple { color: #7c3aed; }
.tt-icon-orange { color: #ff6b00; }
.tt-icon-blue { color: #3b82f6; }
.tt-icon-red { color: #ef4444; }
.tt-icon-gray { color: #94a3b8; }
.tt-stars { color: #f59e0b; letter-spacing: 2px; font-size: 0.8rem; margin-right: 4px; }
.tt-cell-rating { font-weight: 700; white-space: nowrap; }
.tt-bar { height: 8px; background: #e2e8f0; border-radius: 100px; overflow: hidden; width: 100%; }
.tt-bar-fill { height: 100%; border-radius: 100px; background: var(--primary-green); }
.tt-bar-green { background: var(--primary-green); }
.tt-bar-teal { background: #14b8a6; }
.tt-bar-purple { background: #7c3aed; }
.tt-bar-orange { background: #ff6b00; }
.tt-bar-blue { background: #3b82f6; }
.tt-bar-red { background: #ef4444; }
.tt-bar-gray { background: #94a3b8; }
.tt-badge { font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.3px; }
.tt-badge-green { background: rgba(0,166,81,0.12); color: var(--primary-green); }
.tt-badge-good { background: rgba(59,130,246,0.1); color: #2563eb; }
.tt-badge-ok { background: rgba(148,163,184,0.15); color: #64748b; }
.trust-insight { }
.ti-card { display: flex; align-items: flex-start; gap: 16px; background: #fff; padding: 28px 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-premium); border-left: 4px solid var(--primary-green); }
.ti-card i { font-size: 1.8rem; color: var(--primary-green); flex-shrink: 0; }
.ti-text h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary-dark); }
.ti-text p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 900px) {
    .market-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .mb-item { grid-template-columns: 120px 1fr 40px 80px; gap: 10px; font-size: 0.8rem; }
}
@media (max-width: 768px) {
    .market-stats-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: 1fr; }
    .mb-item { grid-template-columns: 100px 1fr 35px 70px; gap: 8px; font-size: 0.75rem; }
    .tt-row { grid-template-columns: 35px 1.5fr 0.8fr 1fr 0.8fr 0.8fr; font-size: 0.78rem; }
    .tt-cell { padding: 10px 8px; }
    .market-breakdown { padding: 24px; }
}

@media (max-width: 480px) {
    .schart-item { flex-direction: column; align-items: flex-start; }
    .rank-progress-track { display: none !important; }
}
