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

/* ========================================
   REUSED: BREADCRUMB
======================================== */
.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);
}

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

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

.section-title span {
    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;
}

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

/* ========================================
   REUSED: 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);
}

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

/* ========================================
   RESPONSIVE NAV & SIDEBAR
======================================== */
@media (max-width: 1024px) {
    .nav-center {
        display: none;
    }
}

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

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

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

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

    .nav-actions {
        gap: 10px;
    }

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

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

    .policy-header.benefits-hero { padding: 270px 12px 190px; }
    .story-ledger { top: 25px; left: 20px; gap: 6px; transform: scale(0.9); transform-origin: top left; }
    .ledger-tag { padding: 6px 12px; font-size: 9px; }
}

@media (max-width: 480px) {
    .policy-header.benefits-hero { padding: 230px 0px 160px; }
    .benefits-hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); letter-spacing: -1px; }
    .benefits-hero .last-updated { font-size: 0.75rem; }
}

/* ========================================
   UNIQUE: HERO — Typewriter with Ledger
======================================== */
.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); }

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

/* ========================================
   UNIQUE: OVERVIEW — At a Glance Cards
======================================== */
.overview-section {
    padding: 120px 2rem;
    background: linear-gradient(160deg, #f8fafc 0%, #f0fdf4 40%, #ffffff 100%);
    position: relative;
}

.overview-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.overview-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.overview-daraz-card {
    border-top: 4px solid #94a3b8;
}

.overview-florian-card {
    border-top: 4px solid var(--primary-green);
}

.overview-florian-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 30px 60px rgba(0,166,81,0.06);
}

.oc-top {
    padding: 2rem 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.oc-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.oc-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.oc-icon-gray {
    background: rgba(148,163,184,0.1);
    color: #94a3b8;
}

.oc-icon-green {
    background: rgba(0,166,81,0.1);
    color: var(--primary-green);
}

.overview-card:hover .oc-icon {
    transform: scale(1.1) rotate(-6deg);
}

.oc-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary-dark);
}

.oc-name-green {
    color: var(--primary-green);
}

.oc-badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    background: rgba(148,163,184,0.08);
    border-radius: 500px;
    color: #94a3b8;
}

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

.oc-body {
    padding: 1.5rem 2rem;
    flex: 1;
}

.oc-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.02);
}

.oc-stat-row:last-child {
    border-bottom: none;
}

.oc-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.oc-stat-value {
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 600;
}

.oc-stat-highlight {
    color: var(--primary-green);
}

.oc-footer {
    padding: 1.2rem 2rem;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    gap: 12px;
}

.oc-footer-green {
    background: rgba(0,166,81,0.03);
}

.oc-score-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.oc-score-bar {
    flex: 1;
    height: 6px;
    background: rgba(0,0,0,0.04);
    border-radius: 10px;
    overflow: hidden;
}

.oc-score-fill {
    height: 100%;
    background: #94a3b8;
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.oc-score-fill-green {
    background: linear-gradient(90deg, var(--primary-green), #34d399);
}

.oc-score-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: #94a3b8;
    white-space: nowrap;
}

.oc-score-num-green {
    color: var(--primary-green);
}

@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }
}

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

    .oc-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .oc-body {
        padding: 1.2rem 1.5rem;
    }

    .oc-footer {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }
}

/* ========================================
   UNIQUE: DETAILED COMPARISON — Table
======================================== */
.detailed-section {
    padding: 120px 2rem;
    background: white;
    position: relative;
}

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

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

.detailed-table-wrap {
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.detailed-table {
    width: 100%;
    border-collapse: collapse;
}

.dt-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: background 0.3s ease;
}

.dt-row:last-child {
    border-bottom: none;
}

.dt-row:hover {
    background: rgba(0,166,81,0.01);
}

.dt-head {
    background: linear-gradient(135deg, #0f172a, #1a2a3a);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dt-head .dt-daraz-col {
    color: #94a3b8;
}

.dt-head .dt-florian-col {
    color: var(--primary-green);
}

.dt-cell {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.dt-feature {
    font-weight: 600;
    color: var(--text-main);
    background: rgba(0,0,0,0.01);
}

.dt-daraz-col {
    color: var(--text-muted);
}

.dt-florian-col {
    color: var(--text-main);
}

.dt-florian-col strong {
    color: var(--primary-green);
}

.df-icon {
    width: 32px;
    height: 32px;
    background: rgba(0,166,81,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.dt-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.dt-tick {
    background: rgba(0,166,81,0.1);
    color: var(--primary-green);
}

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

.dt-badge {
    display: inline-block;
    padding: 2px 10px;
    background: linear-gradient(135deg, var(--primary-green), #059669);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 500px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.detailed-note {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(245,158,11,0.04);
    border: 1px solid rgba(245,158,11,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #92400e;
}

.detailed-note i {
    font-size: 1rem;
    color: #f59e0b;
}

@media (max-width: 1024px) {
    .dt-row {
        grid-template-columns: 1.2fr 0.8fr 1.2fr;
    }

    .dt-cell {
        padding: 14px 16px;
        font-size: 0.82rem;
    }
}

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

    .dt-row {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 12px 0;
    }

    .dt-head {
        display: none;
    }

    .dt-cell {
        padding: 6px 16px;
    }

    .dt-feature {
        font-weight: 700;
        background: rgba(0,166,81,0.02);
        padding: 10px 16px;
        border-bottom: 1px solid rgba(0,166,81,0.05);
    }

    .dt-daraz-col::before {
        content: 'Daraz: ';
        font-weight: 600;
        color: #94a3b8;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-right: 4px;
    }

    .dt-florian-col::before {
        content: 'FlorianBD: ';
        font-weight: 600;
        color: var(--primary-green);
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-right: 4px;
    }
}

/* ========================================
   UNIQUE: WHY FLORIANBD WINS — Cards
======================================== */
.wins-section {
    padding: 120px 2rem;
    background: linear-gradient(160deg, #f8fafc 0%, #f0fdf4 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

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

.wins-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,166,81,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,166,81,0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 25%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 25%, transparent 75%);
}

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

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

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

.wins-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    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);
}

.wins-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--w-accent, var(--primary-green));
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.wins-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    border-color: var(--w-accent, var(--primary-green));
}

.wc-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--w-accent, var(--primary-green));
    opacity: 0.06;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: var(--transition-smooth);
}

.wins-card:hover .wc-number {
    opacity: 0.12;
    transform: scale(1.1);
}

.wc-icon-wrap {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--w-accent, var(--primary-green)), transparent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--transition-smooth);
}

.wc-icon-wrap i {
    font-size: 22px;
    color: white;
}

.wins-card:hover .wc-icon-wrap {
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.wc-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.6rem;
}

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

.wc-vs {
    padding: 0.8rem 1rem;
    background: rgba(245,158,11,0.04);
    border: 1px solid rgba(245,158,11,0.08);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wc-vs-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #d97706;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wc-vs-text {
    font-size: 0.82rem;
    color: #92400e;
    font-weight: 500;
}

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

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

    .wins-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .wins-card {
        padding: 1.5rem;
    }
}

/* ========================================
   UNIQUE: FAIR PLAY — Daraz Strengths
======================================== */
.fairplay-section {
    padding: 120px 2rem;
    background: #ffffff;
    position: relative;
}

.fairplay-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.fairplay-header .section-title span {
    color: #f59e0b;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.fairplay-card {
    background: linear-gradient(160deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}

.fairplay-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border-color: rgba(245,158,11,0.15);
    background: white;
}

.fpc-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(245,158,11,0.02));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #f59e0b;
    transition: var(--transition-smooth);
}

.fairplay-card:hover .fpc-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 8px 24px rgba(245,158,11,0.2);
}

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

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

.fairplay-conclusion {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(245,158,11,0.03);
    border: 1px solid rgba(245,158,11,0.08);
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fairplay-conclusion i {
    font-size: 2rem;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 4px;
}

.fairplay-conclusion p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.fairplay-conclusion strong {
    color: var(--secondary-dark);
}

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

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

    .fairplay-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .fairplay-conclusion {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.2rem 1.5rem;
    }
}

/* ========================================
   REUSED: KNOWLEDGE SECTION
======================================== */
.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;
}

.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-paragraph-card[data-idx="0"] .kn-pc-text::first-line {
    color: #292524;
    font-weight: 500;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 1024px) {
    .knowledge-header { margin-bottom: 3.5rem; }
    .knowledge-header .section-title { font-size: 1.7rem; }
    .kn-header-sub { font-size: 0.88rem; }
    .kn-essay::before { left: 1.4rem; }
    .kn-essay::after { left: 0.8rem; font-size: 0.7rem; }
    .kh-ornament::before, .kh-ornament::after { width: 36px; }
}

@media (max-width: 768px) {
    .knowledge-section { padding: 80px 1.25rem 100px; }
    .knowledge-header { margin-bottom: 3rem; }
    .knowledge-header .section-title { font-size: 1.4rem; }
    .kn-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; line-height: 1.8; }
    .kn-pc-tag { font-size: 0.85rem; }
    .conclusion-card .kn-pc-text { padding-left: 1rem; font-size: 0.93rem; }
}

@media (max-width: 480px) {
    .knowledge-section { padding: 60px 1rem 80px; }
    .knowledge-header .section-title { font-size: 1.2rem; }
    .kn-paragraph-card { padding: 0 0 0 2.2rem; }
    .kn-essay::before { left: 0.9rem; }
    .kn-essay::after { left: 0.35rem; font-size: 0.55rem; }
}

/* ========================================
   UNIQUE: EXPERT VERDICT
======================================== */
.verdict-section {
    padding: 120px 2rem;
    background: linear-gradient(160deg, #ffffff 0%, #f6fdf9 30%, #f0fdf4 60%, #ffffff 100%);
    position: relative;
}

.verdict-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.verdict-card {
    background: white;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
}

.verdict-card:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,0.06);
    border-color: rgba(0,166,81,0.08);
}

.verdict-metrix {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.verdict-platform {
    text-align: center;
}

.vp-label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vp-label-green {
    color: var(--primary-green);
}

.vp-meter {
    height: 12px;
    background: rgba(0,0,0,0.04);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.vp-meter-fill {
    height: 100%;
    width: var(--vp-pct, 0%);
    background: linear-gradient(90deg, #94a3b8, #cbd5e1);
    border-radius: 20px;
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.vp-meter-green {
    background: linear-gradient(90deg, var(--primary-green), #34d399);
}

.vp-score {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #94a3b8;
    line-height: 1;
}

.vp-score-green {
    color: var(--primary-green);
}

.vp-sub {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 4px;
    font-weight: 500;
}

.vp-sub-green {
    color: var(--primary-green);
}

.verdict-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd-vs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    color: white;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(245,158,11,0.2);
    animation: verdictVsPulse 2s ease-in-out infinite;
}

@keyframes verdictVsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.verdict-statement {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 1.5rem 2rem;
    background: rgba(0,166,81,0.03);
    border: 1px solid rgba(0,166,81,0.06);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.verdict-statement i {
    font-size: 1.8rem;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 4px;
}

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

.vs-text p:first-child {
    margin-bottom: 0.5rem;
}

.vs-text strong {
    color: var(--secondary-dark);
}

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

.verdict-verdict {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0,166,81,0.04), rgba(0,166,81,0.01));
    border-radius: 16px;
    border: 1px solid rgba(0,166,81,0.08);
}

.verdict-badge {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--primary-green), #059669);
    color: white;
    border-radius: 500px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-right: 10px;
}

.verdict-verdict i {
    font-size: 1.5rem;
    color: #f59e0b;
    animation: verdictTrophy 2s ease-in-out infinite;
}

@keyframes verdictTrophy {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

@media (max-width: 768px) {
    .verdict-section { padding: 80px 1.5rem; }
    .verdict-card { padding: 2rem 1.5rem; }
    .verdict-metrix { grid-template-columns: 1fr; gap: 1.5rem; }
    .vp-meter { max-width: 100%; }
    .verdict-statement { flex-direction: column; padding: 1.2rem; }
    .verdict-badge { font-size: 0.85rem; padding: 8px 20px; }
}

/* ========================================
   REUSED: TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    padding: 120px 2rem;
    background: linear-gradient(160deg, #ffffff 0%, #f0fdf4 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0 2rem;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 320px;
    scroll-snap-align: start;
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

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

.tc-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.2rem;
}

.tc-stars i {
    color: #f59e0b;
    font-size: 0.9rem;
}

.tc-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tc-avatar i {
    font-size: 2.2rem;
    color: var(--primary-green);
    opacity: 0.5;
}

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

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

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.tc-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 166, 81, 0.2);
    background: white;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tc-arrow:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: scale(1.1);
}

.tc-dots {
    display: flex;
    gap: 10px;
}

.tc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tc-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--primary-green);
}

@media (max-width: 768px) {
    .testimonials-section { padding: 80px 1.5rem; }
    .testimonial-card { flex: 0 0 100%; min-width: 0; }
}

/* ========================================
   REUSED: FAQ SECTION
======================================== */
.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;
}

@media (max-width: 768px) {
    .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; }
}

/* ========================================
   REUSED: CTA SECTION
======================================== */
.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-primary:active {
    transform: translateY(0) scale(0.98);
}

.cta-btn-primary:hover .cta-btn-icon {
    transform: translateX(4px);
}

.cta-btn-icon {
    transition: transform 0.3s ease;
}

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

@media (max-width: 1024px) {
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 80px 2rem;
    }
    .cta-sub { max-width: 100%; }
    .cta-col-stats { max-width: 500px; }
}

@media (max-width: 768px) {
    .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; }
}

/* ========================================
   REUSED: SUPER FOOTER
======================================== */
.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;
    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);
}

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

/* ========================================
   PRICING & VALUE SECTION
======================================== */
.pricing-section { padding: 100px 2rem; background: #fff; }
.pricing-container { max-width: 1200px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 50px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.pricing-card { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-premium); border: 1px solid rgba(0,0,0,0.04); transition: var(--transition-smooth); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -10px rgba(0,0,0,0.12); }
.pc-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.pc-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.pc-icon-gray { background: #e2e8f0; color: #64748b; }
.pc-icon-green { background: rgba(0,166,81,0.12); color: var(--primary-green); }
.pc-name { font-weight: 700; font-size: 1.2rem; color: var(--secondary-dark); }
.pc-name-green { color: var(--primary-green); }
.pc-body { display: flex; flex-direction: column; gap: 10px; }
.pc-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.pc-row:last-child { border-bottom: none; }
.pc-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.pc-value { font-size: 0.9rem; font-weight: 600; color: var(--secondary-dark); }
.pc-negative { color: #dc2626 !important; }
.pc-positive { color: var(--primary-green) !important; }
.pc-badge-high { background: rgba(220,38,38,0.1); padding: 2px 10px; border-radius: 100px; font-size: 0.75rem; }
.pc-badge-low { background: rgba(0,166,81,0.1); padding: 2px 10px; border-radius: 100px; font-size: 0.75rem; }
.pc-footer { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.06); display: flex; align-items: center; gap: 12px; }
.pc-score-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.pc-score-bar { flex: 1; height: 6px; background: #e2e8f0; border-radius: 100px; overflow: hidden; }
.pc-score-fill { height: 100%; background: #dc2626; border-radius: 100px; transition: width 1s ease; }
.pc-score-fill-green { background: var(--primary-green); }
.pc-score-num { font-size: 0.85rem; font-weight: 700; color: #dc2626; min-width: 40px; text-align: right; }
.pc-score-num-green { color: var(--primary-green); }
.pc-footer-green { border-top-color: rgba(0,166,81,0.15); }
.pricing-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); }
.pricing-note i { color: var(--primary-green); font-size: 1.1rem; margin-top: 2px; }

/* ========================================
   DELIVERY & COVERAGE SECTION
======================================== */
.delivery-section { padding: 100px 2rem; background: var(--bg-soft); position: relative; }
.delivery-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(0,166,81,0.03) 0%, transparent 60%); pointer-events: none; }
.delivery-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.delivery-header { text-align: center; margin-bottom: 50px; }
.delivery-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-premium); }
.delivery-table { width: 100%; border-collapse: collapse; background: #fff; }
.dt-row-head { background: var(--secondary-dark); color: #fff; }
.dt-cell { padding: 14px 18px; font-size: 0.9rem; }
.dt-cell-feature { font-weight: 600; white-space: nowrap; }
.dt-cell-daraz { color: var(--text-muted); }
.dt-cell-florian { color: var(--primary-green); font-weight: 500; }
.delivery-table .dt-row { display: grid; grid-template-columns: 2fr 1fr 1fr; border-bottom: 1px solid rgba(0,0,0,0.04); }
.delivery-table .dt-row:last-child { border-bottom: none; }
.dc-icon { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; font-size: 0.7rem; margin-right: 6px; }
.dc-tick { background: rgba(0,166,81,0.1); color: var(--primary-green); }
.dc-cross { background: rgba(220,38,38,0.1); color: #dc2626; }
.delivery-coverage { margin-top: 30px; }
.dc-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); }
.dc-card i { font-size: 2rem; color: var(--primary-green); flex-shrink: 0; }
.dc-card-text h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary-dark); }
.dc-card-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ========================================
   CUSTOMER SUPPORT SECTION
======================================== */
.support-section { padding: 100px 2rem; background: #fff; }
.support-container { max-width: 1200px; margin: 0 auto; }
.support-header { text-align: center; margin-bottom: 50px; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 40px; }
.support-card { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-premium); border: 1px solid rgba(0,0,0,0.04); transition: var(--transition-smooth); }
.support-card:hover { transform: translateY(-4px); }
.sc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.sc-top-green { }
.sc-brand-icon { font-size: 1.5rem; color: #64748b; width: 48px; height: 48px; border-radius: 12px; background: #e2e8f0; display: flex; align-items: center; justify-content: center; }
.sc-brand-icon-green { background: rgba(0,166,81,0.1); color: var(--primary-green); }
.sc-name { font-weight: 700; font-size: 1.15rem; color: var(--secondary-dark); }
.sc-name-green { color: var(--primary-green); }
.sc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.sc-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-main); padding: 4px 0; }
.sc-item i { width: 18px; text-align: center; font-size: 0.75rem; }
.sc-item-tick i { color: var(--primary-green); }
.sc-item-cross i { color: #dc2626; }
.sc-item-tick { color: var(--primary-green); }
.sc-item-cross { color: #94a3b8; }
.sc-meter { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.06); }
.sc-meter-green { border-top-color: rgba(0,166,81,0.15); }
.sc-meter-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.sc-meter-bar { flex: 1; height: 6px; background: #e2e8f0; border-radius: 100px; overflow: hidden; }
.sc-meter-fill { height: 100%; background: #dc2626; border-radius: 100px; transition: width 1s ease; }
.sc-meter-fill-green { background: var(--primary-green); }
.sc-meter-num { font-size: 0.85rem; font-weight: 700; color: #dc2626; min-width: 40px; text-align: right; }
.sc-meter-num-green { color: var(--primary-green); }
.support-highlight { }
.sh-card { display: flex; align-items: flex-start; gap: 16px; background: var(--bg-soft); padding: 28px 30px; border-radius: var(--radius-lg); margin-bottom: 24px; border-left: 4px solid var(--primary-green); }
.sh-card i { font-size: 1.8rem; color: var(--primary-green); flex-shrink: 0; }
.sh-text h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary-dark); }
.sh-text p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.sh-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sh-stat { text-align: center; background: var(--bg-soft); padding: 20px; border-radius: var(--radius-md); }
.sh-stat-num { display: block; font-size: 1.5rem; font-weight: 900; color: var(--secondary-dark); margin-bottom: 4px; }
.sh-stat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* Pricing & Delivery Mobile */
@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .support-grid { grid-template-columns: 1fr; }
    .delivery-table .dt-row { grid-template-columns: 1.5fr 1fr 1fr; font-size: 0.82rem; }
    .dt-cell { padding: 10px 12px; }
    .sh-stats { grid-template-columns: repeat(2, 1fr); }
    .pc-footer { flex-wrap: wrap; }
}

@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) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-brand-col { grid-column: span 2; }
}

.seo-date { display: none; }
.verdict-link { color: var(--primary-green); font-weight: 600; text-decoration: underline; }
.verdict-link:hover { color: var(--primary-dark); }

@media (max-width: 768px) {
    .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; }
    .footer-links { width: 100%; }
}
