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

/* ========================================
   TOP NAVIGATION
======================================== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: #008f45;
    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: var(--primary-green);
}

.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: rgba(255, 255, 255, 0.8);
    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: var(--primary-green);
    box-shadow: var(--shadow-green);
}

.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: var(--primary-green);
    color: white;
    transform: translateY(-4px) rotate(5deg);
    box-shadow: var(--shadow-green);
}

.top-nav.scrolled .nav-btn:hover {
    background: var(--primary-green);
    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;
}

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

/* ========================================
   HEADER (PARTNERSHIPS PAGE)
======================================== */
.about-header {
    padding: 160px 20px 180px;
    color: white;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 0%);
    overflow: hidden;
    text-align: center;
}
.about-header.benefits-hero {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    padding: 180px 20px 220px;
    margin-top: 0;
    z-index: 10;
}
.about-header.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; z-index: 6;
}
.about-header.benefits-hero .last-updated {
    font-size: 0.9rem; opacity: 0.8; font-weight: 500;
}
.about-header.benefits-hero h1 {
    margin-bottom: 16px;
}


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

.info-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 500px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.about-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* ── Benefits-style Hero Ledger ── */
.benefit-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: 8px 16px; 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);
}
@keyframes ledgerShimmer {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}
.ledger-tag.impact {
    animation: ledgerBuild 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.ledger-tag.impact::after {
    animation: ledgerShimmer 1.5s 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) {
    .benefit-ledger { top: 80px; left: 20px; gap: 6px; transform: scale(0.9); transform-origin: top left; }
    .ledger-tag { padding: 6px 12px; font-size: 9px; }
    .ledger-tag::before { width: 4px; height: 4px; }
    .about-header.benefits-hero { padding: 140px 12px 190px; }
    .about-header.benefits-hero::after { height: 80px; }
}

/* ========================================
   CONTENT SECTIONS
======================================== */
.content-section {
    padding: 100px 2rem;
    position: relative;
}

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

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

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

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

/* Vision Section */
.vision-section {
    background: var(--bg-soft);
}

.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.content-block {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.content-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box i {
    font-size: 28px;
    color: white;
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

.content-block p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Innovation Section */
.innovation-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.feature-list i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 166, 81, 0.3);
    transition: var(--transition-smooth);
}

.feature-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 166, 81, 0.4);
}

.feature-visual {
    position: relative;
    height: 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

.visual-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.visual-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.visual-card i {
    font-size: 3rem;
    color: var(--primary-green);
}

.visual-card span {
    font-weight: 600;
    color: var(--secondary-dark);
}

.visual-card.card-1 {
    grid-column: span 2;
}

/* Benefits / Values Section */
.values-section {
    background: var(--bg-soft);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 28px;
    color: white;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

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

/* Impact Section */
.impact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.stat-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 166, 81, 0.3);
}

.stat-circle i {
    font-size: 2.5rem;
    color: white;
}

.impact-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
}

.impact-stat p {
    color: var(--text-muted);
    font-size: 1rem;
}

.impact-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.story-quote {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.story-quote i {
    font-size: 20px;
    color: var(--primary-green);
}

.story-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.story-author strong {
    display: block;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 0.25rem;
}

.story-author span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    padding: 100px 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn.primary-large,
.cta-btn.secondary-large {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.cta-btn.primary-large {
    background: white;
    color: var(--primary-green);
}

.cta-btn.primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary-large {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary-large:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

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

/* ========================================
   WHY US COMPARISON GRID — PREMIUM
========================================= */
.why-us-section {
    background: linear-gradient(160deg, #ffffff 0%, #f6fdf9 30%, #f0fdf4 60%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

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

.why-us-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(0, 166, 81, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 166, 81, 0.03) 0%, transparent 50%);
}

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

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

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

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

@keyframes whyUsBlob {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    100% { transform: translate(50px, -50px) scale(1.3); opacity: 0.8; }
}

.why-us-header { position: relative; z-index: 2; }

.why-us-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.15));
    color: var(--primary-green);
    padding: 6px 22px;
    border-radius: 500px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 166, 81, 0.1);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.why-us-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 800px;
}

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

.w-card-check {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 0.7rem;
    transition: all 0.5s ease;
    z-index: 2;
}

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

.why-us-card:hover .w-card-glow { opacity: 1; }

.why-us-card:hover .w-card-check {
    background: var(--primary-green);
    color: white;
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.why-us-top {
    padding: 2rem 1.5rem 1.2rem;
    text-align: center;
    position: relative;
}

.why-us-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.06), rgba(0, 166, 81, 0.14));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 166, 81, 0.06);
}

.why-us-icon i {
    font-size: 22px;
    color: var(--primary-green);
    transition: all 0.5s ease;
}

.why-us-card:hover .why-us-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    transform: scale(1.1) rotate(-6deg);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 166, 81, 0.2);
}

.why-us-card:hover .why-us-icon i {
    color: white;
    animation: whyIconPop 0.6s ease;
}

@keyframes whyIconPop {
    0% { transform: scale(1) rotate(0deg); }
    30% { transform: scale(1.4) rotate(-12deg); }
    60% { transform: scale(0.9) rotate(8deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.why-us-top h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.4rem;
    transition: color 0.4s ease;
}

.why-us-card:hover .why-us-top h3 { color: var(--primary-green); }

.why-us-top p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

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

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

.vs-badge::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(245, 158, 11, 0);
    transition: all 0.5s ease;
}

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

.why-us-card:hover .vs-badge::after {
    border-color: rgba(245, 158, 11, 0.2);
    animation: vsRing 1.5s ease infinite;
}

@keyframes vsRing {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

.why-us-bottom {
    padding: 1rem 1.5rem 1.75rem;
    text-align: center;
}

.traditional-text {
    font-size: 0.82rem;
    color: #94a3b8;
    font-style: italic;
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.3);
    line-height: 1.5;
    transition: color 0.4s ease;
}

.why-us-card:hover .traditional-text {
    color: #b0b8c4;
}

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

@media (max-width: 768px) {
    .why-us-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .why-us-card { backdrop-filter: none; background: white; }
    .why-us-top { padding: 1.75rem 1.25rem 1rem; }
    .why-us-bottom { padding: 0.75rem 1.25rem 1.5rem; }
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

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

.why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.why-us-top {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.why-us-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.why-us-icon i {
    font-size: 24px;
    color: var(--primary-green);
}

.why-us-top h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
}

.why-us-top p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    gap: 1rem;
}

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

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

.why-us-bottom {
    padding: 1.2rem 2rem 2rem;
    text-align: center;
}

.traditional-text {
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.4);
    line-height: 1.5;
}

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

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

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

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

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

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

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

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

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

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

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

.faq-answer-inner-about a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.faq-answer-inner-about a:hover {
    text-decoration: underline;
}

/* ========================================
   STATS SECTION
======================================== */
.stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}
.stats-section .section-label {
    color: #10b981;
}
.stats-section .section-title {
    color: #fff;
}
.stats-section .section-description {
    color: rgba(255,255,255,0.6);
}
.stats-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 28px;
    width: 220px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.stat-icon {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 12px;
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ========================================
   CREDENTIALS / MISSION CARDS
======================================== */
.credentials-section {
    background: #f8fafc;
}
.credentials-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.credential-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 24px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.credential-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.credential-icon {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 14px;
}
.credential-card h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 600;
}
.credential-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-brand-col {
        grid-column: span 3;
        text-align: center;
        padding-right: 0;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

    .section-header {
        margin-bottom: 2.5rem;
    }

    .two-col,
    .values-grid,
    .impact-stats,
    .impact-stories,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-block,
    .value-card,
    .story-card {
        padding: 2rem;
    }

    .feature-visual {
        height: 300px;
        gap: 1rem;
    }

    .visual-card {
        padding: 1.5rem;
    }

    .visual-card i {
        font-size: 2rem;
    }

    .cta-section {
        padding: 60px 1.5rem;
    }

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

    .cta-btn.primary-large,
    .cta-btn.secondary-large {
        width: 100%;
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }

    .footer-brand-col {
        grid-column: span 1;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
}

/* ========================================
   PARTNERSHIPS PAGE — UNIQUE SECTIONS
   (Completely original — not from about page)
======================================== */

/* ── Section 1: Alliance Intro ── */
.partners-alliance {
    background: linear-gradient(160deg, #f0fdf4 0%, #ffffff 40%, #f8fafc 100%);
    position: relative; overflow: hidden;
}
.alliance-bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0,166,81,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(0,166,81,0.03) 0%, transparent 50%);
}
.alliance-content { position: relative; z-index: 2; text-align: center; max-width: 920px; margin: 0 auto; }
.alliance-lead { font-size: 1.2rem; line-height: 2; color: var(--text-muted); margin-bottom: 2.5rem; }
.alliance-divider {
    width: 80px; height: 3px; margin: 0 auto 2.5rem;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-light)); border-radius: 3px;
}
.alliance-strip {
    display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
    background: white; padding: 2rem 2.5rem; border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.03);
}
.strip-item { text-align: center; }
.strip-item .si-num { font-size: 2.2rem; font-weight: 800; color: var(--primary-green); line-height: 1; }
.strip-item .si-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.3rem; }

/* ── Section 2: Partner Profiles — White Theme Premium Showcase ── */
.partner-profiles {
    background: linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);
    position: relative;
}
.profiles-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}

/* Card Container — clean white */
.prof-card {
    background: white; border-radius: 24px; overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.03), 0 1px 4px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; flex-direction: column;
}
.prof-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.04), 0 4px 16px rgba(0,166,81,0.03);
    border-color: rgba(0,166,81,0.06);
}

/* Cover — light & airy */
.prof-cover {
    position: relative; height: 180px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 40%, #e0f2f1 100%);
}
.prof-cover-alt {
    background: linear-gradient(135deg, #e0f2f1 0%, #e8f5e9 40%, #fff3e0 100%);
}
.prof-cover-leaf {
    position: absolute; inset: 0; opacity: 0.06;
    background-image:
        radial-gradient(circle at 15% 30%, var(--primary-green) 1px, transparent 1px),
        radial-gradient(circle at 85% 70%, var(--primary-green) 1px, transparent 1px);
    background-size: 24px 24px;
}
.prof-cover-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--primary-green); color: white;
    padding: 0.3rem 1rem; border-radius: 50px;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(0,166,81,0.15);
    z-index: 3;
}
.prof-cover-icon {
    position: relative; z-index: 2;
    width: 76px; height: 76px;
    background: white; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
}
.prof-cover-icon i { font-size: 2rem; color: var(--primary-green); }

/* Body */
.prof-body { padding: 1.75rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.prof-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.prof-avatar {
    width: 56px; height: 56px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-green), #66bb6a);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(0,166,81,0.10);
}
.prof-avatar i { font-size: 1.5rem; color: white; }
.prof-meta h3 { font-size: 1.25rem; font-weight: 700; color: var(--secondary-dark); line-height: 1.3; }
.prof-location { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.35rem; }
.prof-location i { color: var(--primary-green); font-size: 0.7rem; }
.prof-tags {
    display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem;
}
.prof-tags span {
    background: rgba(0,166,81,0.05); color: var(--primary-green);
    font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.75rem;
    border-radius: 50px; display: inline-flex; align-items: center; gap: 0.3rem;
}
.prof-tags span i { font-size: 0.65rem; }
.prof-body > p { color: var(--text-muted); line-height: 1.8; font-size: 0.9rem; margin-bottom: 1.25rem; flex: 1; }

/* Stats Row */
.prof-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem;
    background: #fafdfb; border-radius: 16px; padding: 1rem;
    margin-bottom: 1.25rem; border: 1px solid rgba(0,166,81,0.04);
}
.prof-stat { text-align: center; }
.prof-stat-num { display: block; font-size: 1.15rem; font-weight: 800; color: var(--secondary-dark); line-height: 1; }
.prof-stat-label { font-size: 0.68rem; color: var(--text-muted); margin-top: 0.2rem; display: block; }

/* Badges & Actions */
.prof-badges-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.pr-badge {
    background: rgba(0,166,81,0.06); color: var(--primary-green); font-weight: 600; font-size: 0.72rem;
    padding: 0.3rem 0.85rem; border-radius: 50px;
    display: inline-flex; align-items: center; gap: 0.35rem;
    border: 1px solid rgba(0,166,81,0.05);
}
.pr-badge i { font-size: 0.65rem; }
.prof-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.prof-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--primary-green); color: white;
    padding: 0.6rem 1.4rem; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
    transition: var(--transition-smooth); text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,166,81,0.15);
}
.prof-btn:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,166,81,0.25); color: white; }
.prof-btn-outline {
    background: transparent; color: var(--secondary-dark);
    border: 1.5px solid rgba(0,0,0,0.06); box-shadow: none;
}
.prof-btn-outline:hover { border-color: var(--primary-green); color: var(--primary-green); background: rgba(0,166,81,0.03); box-shadow: none; }

/* ── Section 3: Partnership Journey — Bold Numbered Showcase ── */
.partnership-journey {
    background: linear-gradient(135deg, #f8fcf9 0%, #ffffff 50%, #f6fdf9 100%);
    position: relative;
}
.journey-flow {
    margin-top: 2.5rem; max-width: 960px; margin-left: auto; margin-right: auto;
}

/* Each block — row with num + card */
.j-block {
    display: flex; gap: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}
.j-block:last-child { margin-bottom: 0; }

/* Number column */
.j-block-num {
    flex-shrink: 0;
    width: 90px; display: flex; justify-content: center;
    position: relative;
}
.j-block-num::after {
    content: ''; position: absolute; top: 72px; bottom: -1.5rem; left: 50%;
    width: 2px; transform: translateX(-50%);
    background: linear-gradient(to bottom, rgba(0,166,81,0.2), rgba(0,166,81,0.05));
}
.j-block:last-child .j-block-num::after { display: none; }

.j-bn-text {
    font-size: 2.8rem; font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0,166,81,0.2);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition-smooth);
    position: relative; z-index: 2;
}
.j-block:hover .j-bn-text {
    -webkit-text-stroke: 2px var(--primary-green);
    transform: scale(1.08);
}

/* Card */
.j-block-card {
    flex: 1; display: flex; gap: 1.5rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.j-block-card::before {
    content: ''; position: absolute; left: -1px; top: 20%; bottom: 20%;
    width: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    opacity: 0;
    transition: var(--transition-smooth);
}
.j-block-card:hover::before { opacity: 1; top: 12%; bottom: 12%; }

.j-block-card:hover {
    transform: translateX(4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.04), 0 4px 16px rgba(0,166,81,0.03);
    border-color: rgba(0,166,81,0.06);
}

/* Icon circle */
.j-bc-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-green), #4ade80);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(0,166,81,0.1);
    transition: var(--transition-smooth);
    margin-top: 0.15rem;
}
.j-block-card:hover .j-bc-icon {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(0,166,81,0.18);
}
.j-bc-icon i { font-size: 1.3rem; color: white; }

/* Content */
.j-bc-content { flex: 1; }
.j-bc-content h3 {
    font-size: 1.15rem; font-weight: 700;
    color: var(--secondary-dark); margin-bottom: 0.35rem;
}
.j-bc-content p {
    font-size: 0.88rem; color: var(--text-muted);
    line-height: 1.75; margin: 0;
}

/* Hover dot indicator on the number */
.j-block-num::before {
    content: ''; position: absolute; top: 30px; left: 50%;
    width: 10px; height: 10px;
    background: rgba(0,166,81,0.08);
    border-radius: 50%; transform: translateX(-50%);
    transition: var(--transition-smooth);
    z-index: 1;
}
.j-block:hover .j-block-num::before {
    background: var(--primary-green);
    box-shadow: 0 0 12px rgba(0,166,81,0.2);
    width: 14px; height: 14px;
}

/* ── Section 4: Why Partner — Premium Benefit Cards with Metrics ── */
.advantage-showcase {
    background: linear-gradient(180deg, #ffffff 0%, #f6fdf9 100%);
}
.advantage-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.adv-card {
    background: white; border-radius: 20px; padding: 1.75rem 2rem 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.02), 0 1px 4px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative; overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.adv-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary-green), #4ade80);
    opacity: 0; transition: var(--transition-smooth);
}
.adv-card:hover::before { opacity: 1; }
.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.04), 0 8px 20px rgba(0,166,81,0.03);
    border-color: rgba(0,166,81,0.06);
}

/* Top row: icon + metric chip */
.adv-top-row {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem;
}
.adv-card .adv-icon {
    width: 50px; height: 50px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-green), #4ade80);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(0,166,81,0.08);
    transition: var(--transition-smooth);
}
.adv-card:hover .adv-icon {
    box-shadow: 0 6px 20px rgba(0,166,81,0.16);
    transform: scale(1.04);
}
.adv-card .adv-icon i { font-size: 1.3rem; color: white; }
.adv-metric {
    background: linear-gradient(135deg, rgba(0,166,81,0.06), rgba(0,166,81,0.12));
    color: var(--primary-green); font-weight: 700; font-size: 0.78rem;
    padding: 0.25rem 0.9rem; border-radius: 50px;
    letter-spacing: 0.3px;
    border: 1px solid rgba(0,166,81,0.06);
}

/* Title & description */
.adv-card h3 {
    font-size: 1.15rem; font-weight: 700;
    color: var(--secondary-dark); margin-bottom: 0.5rem;
}
.adv-card p {
    color: var(--text-muted); font-size: 0.88rem;
    line-height: 1.75; margin-bottom: 1.25rem;
}

/* Stat progress bar */
.adv-stat { margin-top: auto; }
.adv-stat > span {
    display: block; font-size: 0.7rem; font-weight: 600;
    color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 0.3rem;
}
.adv-stat-bar {
    height: 4px; background: rgba(0,0,0,0.04);
    border-radius: 4px; overflow: hidden;
}
.adv-stat-bar span {
    display: block; height: 100%;
    background: linear-gradient(90deg, var(--primary-green), #4ade80);
    border-radius: 4px;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Section 5: Impact Dashboard ── */
.impact-dash {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}
.impact-dash .section-label { color: #00c862; }
.impact-dash .section-title { color: white; }
.impact-dash .section-description { color: rgba(255,255,255,0.5); }
.dash-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.dash-tile {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px; padding: 2rem 1.5rem; text-align: center;
    transition: var(--transition-smooth);
}
.dash-tile:hover {
    background: rgba(255,255,255,0.07); transform: translateY(-4px);
    border-color: rgba(0,166,81,0.2);
}
.dash-tile .dt-icon {
    width: 56px; height: 56px; margin: 0 auto 1rem;
    background: rgba(0,166,81,0.12); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.dash-tile .dt-icon i { font-size: 1.4rem; color: var(--primary-green); }
.dash-tile .dt-number { font-size: 2.4rem; font-weight: 800; color: white; line-height: 1.2; }
.dash-tile .dt-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.3rem; }

/* ── Section 6: Regional Directory ── */
.regional-dir { background: white; }
.dir-group { margin-bottom: 2.5rem; }
.dir-group:last-child { margin-bottom: 0; }
.dir-group-header {
    font-size: 1.1rem; font-weight: 700; color: var(--secondary-dark);
    margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem;
}
.dir-group-header i { color: var(--primary-green); font-size: 1rem; }
.dir-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.dir-tile {
    background: var(--bg-soft); border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px; padding: 1.5rem; transition: var(--transition-smooth); cursor: default;
}
.dir-tile:hover {
    background: white; border-color: var(--primary-green);
    transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}
.dir-tile .dti-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(0,166,81,0.08), rgba(0,166,81,0.16));
    border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem;
}
.dir-tile .dti-icon i { font-size: 1.2rem; color: var(--primary-green); }
.dir-tile h4 { font-size: 0.95rem; font-weight: 700; color: var(--secondary-dark); margin-bottom: 0.2rem; }
.dir-tile .dir-city { font-size: 0.8rem; color: var(--text-muted); }

/* ── Section 7: Testimonials ── */
.partner-voices { background: linear-gradient(160deg, #fff 0%, #f6fdf9 40%, #fff 100%); }
.voices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.vox-card {
    background: white; border-radius: 24px; padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-smooth); position: relative;
}
.vox-card:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); border-color: rgba(0,166,81,0.12); }
.vox-quote { font-size: 3.5rem; line-height: 1; color: rgba(0,166,81,0.1); font-family: Georgia, serif; margin-bottom: 0.5rem; }
.vox-text { font-size: 1rem; line-height: 1.8; color: var(--text-muted); font-style: italic; margin-bottom: 1.5rem; }
.vox-author {
    display: flex; align-items: center; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid rgba(0,0,0,0.04);
}
.vox-avatar {
    width: 48px; height: 48px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.vox-avatar i { font-size: 1.2rem; color: white; }
.vox-name { font-weight: 700; color: var(--secondary-dark); font-size: 0.95rem; }
.vox-role { font-size: 0.8rem; color: var(--text-muted); }

/* ── Section 8: FAQ ── */
.partner-faq { background: var(--bg-soft); }
.faq-group { margin-bottom: 2.5rem; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-label {
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--primary-green);
    margin-bottom: 1rem; padding-left: 0.5rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.faq-group-label::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, rgba(0,166,81,0.15), transparent);
}
.partner-faq .faq-grid-about { max-width: 800px; margin: 0 auto; }
.partner-faq .faq-item-about {
    background: white; border-radius: 16px; margin-bottom: 12px;
    border: 1px solid rgba(0,0,0,0.04); overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.partner-faq .faq-item-about.active { border-color: rgba(0,166,81,0.2); box-shadow: 0 4px 16px rgba(0,166,81,0.06); }
.partner-faq .faq-question-about { padding: 20px 24px; display: flex; align-items: center; gap: 16px; cursor: pointer; }
.partner-faq .faq-q-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    background: rgba(0,166,81,0.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-green); font-size: 0.85rem;
}
.partner-faq .faq-item-about.active .faq-q-icon { background: var(--primary-green); color: white; }
.partner-faq .faq-question-about h3 { flex: 1; font-size: 1rem; font-weight: 600; color: var(--secondary-dark); }
.partner-faq .faq-item-about.active .faq-question-about h3 { color: var(--primary-green); }

/* ── Section: Hallmarks — White Theme Comparison Cards ── */
.hallmarks-section {
    padding: 100px 2rem; position: relative; overflow: hidden;
    background: #ffffff;
}
.hallmarks-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        radial-gradient(ellipse at 30% 20%, rgba(0,166,81,0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0,166,81,0.01) 0%, transparent 50%);
}
.hallmarks-container { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.hallmarks-header { text-align: center; margin-bottom: 3rem; }
.hallmarks-header .section-label { color: var(--primary-green); }
.clash-symbol {
    display: inline-block; font-size: 1.2em; margin: 0 0.4rem;
    animation: clashPulse 1.2s ease-in-out infinite;
}
@keyframes clashPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-8deg); }
    50% { transform: scale(1.3) rotate(0deg); }
    75% { transform: scale(1.2) rotate(8deg); }
}
.hallmarks-header .section-title {
    font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; color: var(--secondary-dark);
    letter-spacing: -1px; line-height: 1.15;
}
.hallmarks-header .section-description {
    font-size: 1rem; color: var(--text-muted);
    margin-top: 0.75rem; max-width: 600px; margin: 0.75rem auto 0;
}

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

.hallmark-card {
    display: flex; flex-direction: column;
    background: #fafdfb;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 20px; overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
    position: relative;
}
.hallmark-card:hover {
    border-color: rgba(0,166,81,0.10);
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.03), 0 4px 16px rgba(0,166,81,0.02);
}

.hmc-win {
    padding: 1.25rem 1.5rem 0.75rem;
    display: flex; gap: 0.9rem; align-items: flex-start;
    position: relative;
}
.hmc-win::after {
    content: ''; position: absolute; bottom: 0; left: 1.5rem; right: 1.5rem;
    height: 1px;
    background: linear-gradient(to right, rgba(0,166,81,0.08), transparent);
}

.hmc-icon {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.75rem; margin-top: 2px;
}
.hmc-icon.win { background: rgba(0,166,81,0.08); color: var(--primary-green); }
.hmc-icon.lose { background: rgba(239,68,68,0.04); color: #ef4444; opacity: 0.4; }

.hmc-body h4 {
    font-size: 0.9rem; font-weight: 700; color: var(--secondary-dark);
    margin-bottom: 3px;
}
.hmc-body p {
    font-size: 0.78rem; color: var(--text-muted); line-height: 1.6;
}

.hmc-divider {
    display: flex; align-items: center; justify-content: center;
    padding: 0.4rem 0;
}
.hmc-badge {
    font-size: 0.5rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 2px; padding: 3px 10px; border-radius: 500px;
}
.hmc-badge.win {
    color: var(--primary-green);
    background: rgba(0,166,81,0.05);
    border: 1px solid rgba(0,166,81,0.06);
}

.hmc-lose {
    padding: 0.5rem 1.5rem 1.25rem;
    display: flex; gap: 0.9rem; align-items: flex-start;
}
.hmc-lose .hmc-body h4 { color: rgba(0,0,0,0.25); }
.hmc-lose .hmc-body p { color: rgba(0,0,0,0.15); }

@media (max-width:900px) {
    .hallmarks-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
@media (max-width:500px) {
    .hallmarks-section { padding: 70px 1.2rem; }
    .hmc-win, .hmc-lose { padding-left: 1rem; padding-right: 1rem; }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .dash-grid { grid-template-columns: repeat(2, 1fr); }
    .dir-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    .profiles-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .advantage-grid { grid-template-columns: 1fr; }
    .voices-grid { grid-template-columns: 1fr; }
    .journey-flow { max-width: 100%; }
    .j-block { gap: 1.5rem; }
    .j-block-num { width: 70px; }
    .j-bn-text { font-size: 2.2rem; -webkit-text-stroke: 1.5px rgba(0,166,81,0.2); }
    .j-block-card { padding: 1.25rem 1.5rem; gap: 1.25rem; }
    .j-bc-icon { width: 46px; height: 46px; }
    .j-bc-icon i { font-size: 1.1rem; }
}
@media (max-width: 768px) {
    .alliance-strip { padding: 1.5rem; gap: 1rem; }
    .strip-item .si-num { font-size: 1.6rem; }
    .profiles-grid { gap: 1.25rem; }
    .prof-cover { height: 160px; }
    .prof-cover-icon { width: 64px; height: 64px; border-radius: 20px; }
    .prof-cover-icon i { font-size: 1.6rem; }
    .prof-body { padding: 1.25rem 1.25rem 1.5rem; }
    .prof-head { gap: 0.75rem; }
    .prof-avatar { width: 48px; height: 48px; border-radius: 14px; }
    .prof-avatar i { font-size: 1.2rem; }
    .prof-meta h3 { font-size: 1.1rem; }
    .prof-stats { gap: 0.5rem; padding: 0.85rem; }
    .prof-stat-num { font-size: 1rem; }
    .j-block { gap: 1rem; }
    .j-block-num { width: 50px; }
    .j-block-num::after { top: 58px; }
    .j-bn-text { font-size: 1.6rem; -webkit-text-stroke: 1.5px rgba(0,166,81,0.15); }
    .j-block-num::before { top: 22px; width: 8px; height: 8px; }
    .j-block-card { padding: 1rem 1.25rem; gap: 1rem; flex-direction: column; }
    .j-bc-icon { width: 42px; height: 42px; }
    .j-bc-icon i { font-size: 1rem; }
    .j-bc-content h3 { font-size: 1rem; }
    .j-bc-content p { font-size: 0.82rem; }
    .adv-card { padding: 1.25rem 1.25rem 1.5rem; }
    .adv-top-row { gap: 0.75rem; }
    .adv-card .adv-icon { width: 42px; height: 42px; }
    .adv-card .adv-icon i { font-size: 1.1rem; }
    .dash-grid { gap: 1rem; }
    .dash-tile { padding: 1.5rem 1rem; }
    .dash-tile .dt-number { font-size: 1.8rem; }
    .dir-grid { grid-template-columns: repeat(2, 1fr); }
    .vox-card { padding: 1.75rem; }
}
@media (max-width: 480px) {
    .dash-grid { grid-template-columns: 1fr; }
    .dir-grid { grid-template-columns: 1fr; }
    .j-block { flex-direction: column; gap: 0.5rem; padding-left: 0; margin-bottom: 1.25rem; }
    .j-block-num { width: 100%; flex-direction: row; justify-content: flex-start; gap: 0.75rem; align-items: center; padding-bottom: 0; }
    .j-block-num::after { display: none; }
    .j-block-num::before { display: none; }
    .j-bn-text { font-size: 1.2rem; -webkit-text-stroke: 1.5px var(--primary-green); }
    .j-block-card { padding: 1rem 1.1rem 1.25rem; gap: 0.85rem; flex-direction: column; }
    .j-bc-icon { width: 38px; height: 38px; }
    .j-bc-icon i { font-size: 0.9rem; }
    .j-bc-content h3 { font-size: 0.95rem; }
    .j-bc-content p { font-size: 0.8rem; }
    .j-block-card::before { top: 0; bottom: 0; left: 0; width: 100%; height: 3px; }
    .j-block-card:hover::before { top: 0; bottom: auto; }
}
@media (max-width: 480px) {
    .about-header.benefits-hero { padding: 230px 0px 160px; }
}
