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

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

.policy-header.platform-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;
}

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

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

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

.policy-header.platform-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;
}

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

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

.header-glass-overlay {
    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;
}

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

/* ========================================
   PLATFORM PROCESS — How It Works
======================================== */
.platform-process-section {
    padding: 100px 2rem;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
    position: relative;
    overflow: hidden;
}

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

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

.process-step {
    position: relative;
}

.ps-connector {
    position: absolute;
    top: 52px;
    left: calc(100% + 12px);
    width: calc(100% - 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), rgba(0, 166, 81, 0.2));
    z-index: 0;
    pointer-events: none;
}

.process-step:last-child .ps-connector {
    display: none;
}

.ps-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px 28px 32px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    height: 100%;
}

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

.ps-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.25);
}

.ps-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.03));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.ps-card:hover .ps-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(0, 166, 81, 0.2);
}

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

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

/* ========================================
   COMMUNITY VOICES — Testimonials
======================================== */
.platform-voices-section {
    padding: 100px 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

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

.voices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.voice-card {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 32px 24px 28px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.voice-card.featured {
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.04), rgba(0, 166, 81, 0.01));
    border-color: rgba(0, 166, 81, 0.12);
    position: relative;
    overflow: hidden;
}

.voice-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-light));
    opacity: 0.6;
}

.vc-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.8rem;
    color: var(--primary-green);
    opacity: 0.3;
}

.vc-stars {
    font-size: 0.85rem;
    color: #fbbf24;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.voice-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
}

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

.vca-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1rem;
    flex-shrink: 0;
}

.vca-info strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary-dark);
}

.vca-info span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1px;
}



/* ========================================
   STATS STRIP
======================================== */
.stats-strip {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #059669 100%);
    position: relative;
    overflow: hidden;
}

.stats-strip::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: 60px 60px;
    pointer-events: none;
}

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

.strip-stat {
    position: relative;
}

.strip-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.strip-stat-num {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
}

.strip-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   FOR BUYERS SECTION — Enhanced Premium
======================================== */
.for-buyers-section {
    padding: 100px 2rem;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(0, 166, 81, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 90%, rgba(0, 166, 81, 0.03) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 166, 81, 0.015) 0%, transparent 70%),
        #ffffff;
    position: relative;
    overflow: hidden;
}

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

.fb-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.fb-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.07), transparent);
    top: -200px;
    right: -150px;
    animation: fbFloat1 30s ease-in-out infinite alternate;
}

.fb-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.05), transparent);
    bottom: -150px;
    left: -100px;
    animation: fbFloat2 25s ease-in-out infinite alternate;
}

.fb-circle-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.04), transparent);
    top: 40%;
    left: 50%;
    animation: fbFloat3 35s ease-in-out infinite alternate;
}

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

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

@keyframes fbFloat3 {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-40%, -45%) scale(1.2); }
}

.fb-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 166, 81, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 166, 81, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

/* ---------- Buyer Trust Strip ---------- */
.buyer-trust-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 40px 0 50px;
    padding: 28px 24px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #007a3d 100%);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(0, 166, 81, 0.3);
}

.buyer-trust-strip::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: 30px 30px;
    pointer-events: none;
}

.buyer-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}

.buyer-trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

.bts-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.buyer-trust-item:hover .bts-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bts-content {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px;
}

.bts-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.bts-plus,
.bts-day {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 1px;
}

.bts-label {
    display: block;
    width: 100%;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

/* ---------- Buyer Steps (How It Works) ---------- */
.buyer-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 auto 50px;
    background: var(--bg-soft);
    border-radius: var(--radius-xl);
    padding: 32px 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 900px;
    position: relative;
}

.buyer-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 10px 16px;
}

.bs-number {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.bs-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.04));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.2rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
}

.buyer-step:hover .bs-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 166, 81, 0.2);
}

.buyer-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 6px;
}

.buyer-step p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

.buyer-step-connector {
    flex-shrink: 0;
    padding: 0 8px;
}

.bsc-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--primary-green);
    font-size: 1rem;
    opacity: 0.4;
}

/* ---------- Features Grid ---------- */
.buyer-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.buyer-feature-card {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 36px 28px 28px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.buyer-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.buyer-feature-card:hover::before {
    opacity: 1;
}

.buyer-feature-card:hover::after {
    opacity: 1;
    left: 0;
    right: 0;
}

.buyer-feature-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 166, 81, 0.08),
        0 0 80px rgba(0, 166, 81, 0.04);
    border-color: rgba(0, 166, 81, 0.15);
}

.bf-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.05));
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(0, 166, 81, 0.08);
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
    z-index: 2;
}

.buyer-feature-card:hover .bf-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.2);
}

.bf-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--primary-green);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

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

.buyer-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-dark);
    position: relative;
    z-index: 1;
}

.buyer-feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    position: relative;
    z-index: 1;
}

.bf-stats {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.bf-stats span {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

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

.bf-highlight-bar {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), rgba(0, 166, 81, 0.2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px 2px 0 0;
}

.buyer-feature-card:hover .bf-highlight-bar {
    transform: scaleX(1);
}

/* ---------- Buyer CTA ---------- */
.buyer-cta {
    margin-top: 50px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #007a3d 50%, var(--primary-green) 100%);
    border-radius: var(--radius-xl);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 30px 60px -15px rgba(0, 166, 81, 0.3);
}

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

.buyer-cta-glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.04), transparent 60%);
    animation: ctaGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes ctaGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-20px, 20px) scale(1.05); }
}

.buyer-cta-content {
    position: relative;
    z-index: 2;
}

.buyer-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.buyer-cta-content h3 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.buyer-cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    line-height: 1.7;
}

.buyer-cta-content p strong {
    color: #fff;
    font-weight: 700;
}

.buyer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #fff;
    color: var(--primary-dark);
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.buyer-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    gap: 16px;
}

.buyer-cta-btn i:last-child {
    transition: transform 0.3s ease;
}

.buyer-cta-btn:hover i:last-child {
    transform: translateX(6px);
}

/* ========================================
   FOR SELLERS SECTION
======================================== */
.for-sellers-section {
    padding: 100px 2rem;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}

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

.seller-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.seller-feature-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

.seller-feature-card:hover::before {
    opacity: 1;
    left: 0;
    right: 0;
}

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

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

.seller-feature-card:hover .sf-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: white;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(0, 166, 81, 0.2);
}

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

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

/* ========================================
   PLATFORM FEATURES SECTION
======================================== */
.platform-features-section {
    padding: 100px 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

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

.platform-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pf-card {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

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

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

.pf-card i {
    font-size: 2.4rem;
    color: var(--primary-green);
    margin-bottom: 16px;
    display: block;
    transition: var(--transition-smooth);
}

.pf-card:hover i {
    transform: scale(1.15);
    color: var(--primary-dark);
}

.pf-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-dark);
}

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

/* ========================================
   PLATFORM KNOWLEDGE SECTION
======================================== */
.platform-knowledge-section {
    padding: 150px 2rem 170px;
    background:
        radial-gradient(ellipse at 15% 25%, rgba(0, 166, 81, 0.03) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 75%, rgba(0, 166, 81, 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;
}

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

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

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

.pkn-gl-2 {
    width: 500px; height: 500px;
    background: rgba(0, 166, 81, 0.015);
    bottom: 5%; right: -10%;
    animation-delay: -14s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pkn-essay {
    position: relative;
}

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

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

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

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

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

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

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

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

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

.pkn-paragraph-card[data-idx="0"] .pkn-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;
}

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

.pkn-typed {
    display: inline;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

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

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

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

.pkn-typed strong {
    font-weight: 700;
    color: #292524;
    animation: pknStyleIn 0.2s ease-out both;
}

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

@keyframes pknStyleIn {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

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

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

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

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

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

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

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

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

[data-idx="6"] + .pkn-paragraph-divider {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
}

[data-idx="6"] + .pkn-paragraph-divider .pkpd-icon {
    font-size: 0.7rem;
    color: rgba(0, 166, 81, 0.15);
}

.conclusion-card {
    padding-bottom: 3rem;
}

.conclusion-card .pkn-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 .pkn-pc-text strong {
    color: #92400e;
}

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

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

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

@keyframes pknEndPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.15); opacity: 0.35; }
}

/* ========================================
   FAQ SECTION PLATFORM
======================================== */
.faq-section-platform {
    padding: 100px 2rem;
    background: #ffffff;
    position: relative;
}

.faq-platform-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

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

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

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

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

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

.faq-platform-item.active .fpq-icon {
    background: var(--primary-green);
    color: white;
}

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

.fpq-content {
    flex: 1;
    min-width: 0;
}

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

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

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

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

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

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

.faq-platform-answer-inner strong {
    color: var(--secondary-dark);
}

/* ========================================
   PLATFORM CROSSLINKS
======================================== */
.platform-crosslinks {
    padding: 80px 2rem;
    background: var(--bg-soft);
}

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

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

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

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

.cta-container h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #fff;
}

.cta-container p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

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

.cta-btn-primary {
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.cta-btn-secondary {
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.copyright p strong {
    color: white;
}

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

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

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

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

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .nav-center { display: none; }
    .policy-header.platform-hero { padding: 140px 16px 160px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .ps-connector { display: none; }
    .voices-grid { grid-template-columns: repeat(2, 1fr); }
    .buyer-features-grid { grid-template-columns: repeat(2, 1fr); }
    .seller-features-grid { grid-template-columns: repeat(2, 1fr); }
    .platform-features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-strip-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .strip-stat:not(:last-child)::after { display: none; }
    .buyer-trust-strip { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .buyer-trust-item:nth-child(3)::after { display: none; }
    .buyer-trust-item:nth-child(4),
    .buyer-trust-item:nth-child(5) { justify-content: flex-start; }
    .buyer-steps { flex-direction: column; gap: 20px; padding: 28px 24px; }
    .buyer-step-connector { transform: rotate(90deg); }
    .buyer-step p { max-width: 280px; }
}

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

    .breadcrumb { font-size: 11px; padding: 8px 16px; }

    .policy-header.platform-hero { padding: 120px 16px 160px; }
    .platform-hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }

    .platform-process-section { padding: 70px 1.25rem; }
    .process-steps { grid-template-columns: 1fr; gap: 28px; }
    .ps-card { padding: 32px 22px 28px; }
    .ps-connector { display: none; }

    .platform-voices-section { padding: 70px 1.25rem; }
    .voices-grid { grid-template-columns: 1fr; gap: 16px; }
    .voice-card { padding: 28px 20px 24px; }

    .stats-strip { padding: 40px 16px; }
    .stats-strip-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .strip-stat:nth-child(4),
    .strip-stat:nth-child(5) { grid-column: span 1; }
    .strip-stat-num { font-size: 1.8rem; }

    .for-buyers-section { padding: 70px 1.25rem; }
    .for-sellers-section { padding: 70px 1.25rem; }
    .platform-features-section { padding: 70px 1.25rem; }
    .buyer-features-grid { grid-template-columns: 1fr; gap: 16px; }
    .seller-features-grid { grid-template-columns: 1fr; gap: 16px; }
    .platform-features-grid { grid-template-columns: 1fr; gap: 16px; }

    .buyer-feature-card { padding: 30px 24px; }
    .seller-feature-card { padding: 30px 24px; }
    .pf-card { padding: 28px 24px; }

    .buyer-trust-strip { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px 20px; }
    .buyer-trust-item:nth-child(2)::after,
    .buyer-trust-item:nth-child(4)::after { display: none; }
    .buyer-trust-item:not(:last-child)::after { height: 28px; }
    .bts-number { font-size: 1.3rem; }

    .buyer-steps { flex-direction: column; gap: 16px; padding: 24px 20px; }
    .buyer-step-connector { transform: rotate(90deg); }
    .buyer-step p { max-width: 100%; }

    .buyer-cta { padding: 40px 24px; border-radius: var(--radius-lg); }
    .buyer-cta-content h3 { font-size: 1.4rem; }
    .buyer-cta-content p { font-size: 0.95rem; }
    .buyer-cta-btn { width: 100%; justify-content: center; }

    .platform-knowledge-section { padding: 80px 1.25rem 100px; }
    .platform-knowledge-container { max-width: 100%; }
    .platform-knowledge-header { margin-bottom: 3rem; }
    .platform-knowledge-header .section-title { font-size: 1.5rem; }
    .pkn-header-sub { font-size: 0.85rem; }
    .pkh-ornament::before, .pkh-ornament::after { width: 36px; }
    .pkn-paragraph-card { padding: 0 0 0 1.5rem; }
    .pkn-pc-text { font-size: 0.9rem; }
    .pkn-essay::before { left: 0.6rem; }
    .pkn-essay::after { left: 0; }
    .pkn-paragraph-divider { padding: 1.25rem 0 0.75rem 1.5rem; }
    .pkn-pc-tag { font-size: 0.8rem; letter-spacing: 1.5px; }
    .conclusion-card .pkn-pc-text { padding-left: 0.75rem; }
    .platform-cta { padding: 70px 20px; }
    .faq-section-platform { padding: 70px 1.25rem; }

    .footer-container { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-brand-col { grid-column: 1 / -1; padding-right: 0; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .cta-actions { flex-direction: column; }
    .cta-btn-primary,
    .cta-btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .policy-header.platform-hero { padding: 100px 16px 140px; }
    .process-steps { grid-template-columns: 1fr; }
    .voices-grid { grid-template-columns: 1fr; }
    .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-strip { padding: 30px 16px; }
    .faq-platform-question { padding: 16px 18px; gap: 12px; }
    .fpq-content h3 { font-size: 0.92rem; }
    .footer-container { grid-template-columns: 1fr; }
    .payment-methods { gap: 10px; }
    .platform-cta { padding: 60px 16px; }

    .buyer-trust-strip { grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px 16px; }
    .buyer-trust-item:not(:last-child)::after { display: none; }
    .bts-icon { width: 36px; height: 36px; font-size: 0.9rem; }
    .bts-number { font-size: 1.1rem; }
    .bts-label { font-size: 0.6rem; }
    .buyer-step { padding: 6px 8px; }
    .bs-icon { width: 44px; height: 44px; font-size: 1rem; }
    .buyer-cta { padding: 32px 20px; }
}
