:root {
    --bg-color: #FFFFFF;
    --bg-secondary: #F5F9F7;
    --primary: #00B870;
    --primary-dark: #009558;
    --secondary: #006940;
    --secondary-light: #00DC85;
    --text-primary: #1A2520;
    --text-secondary: #6B7870;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 160, 90, 0.12);
    --glass-blur: 12px;
    --card-hover: rgba(0, 184, 112, 0.04);
    --gradient-main: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    --gradient-text: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-gradient-secondary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-padding {
    padding: 100px 0;
}

.center {
    text-align: center;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Background Decorative Blobs */
.background-glow {
    position: fixed;
    top: -15%;
    right: -15%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 184, 112, 0.07) 0%, transparent 62%);
    border-radius: 50%;
    z-index: -2;
    pointer-events: none;
}

.background-glow::after {
    content: '';
    position: fixed;
    bottom: -20%;
    left: -12%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 184, 112, 0.05) 0%, transparent 62%);
    border-radius: 50%;
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(0, 130, 70, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 130, 70, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    border: none;
    box-shadow: 0 4px 18px rgba(0, 150, 88, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-light) 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(0, 160, 90, 0.35);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(0, 184, 112, 0.06);
    color: var(--secondary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 18px 42px;
    font-size: 1.25rem;
}

.glow-effect:hover {
    box-shadow: 0 6px 24px rgba(0, 184, 112, 0.35);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 184, 112, 0.08);
    border: 1px solid rgba(0, 184, 112, 0.25);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 160, 90, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: conic-gradient(from 180deg at 50% 50%, var(--secondary), var(--primary), var(--secondary-light), var(--secondary));
    filter: blur(70px);
    opacity: 0.12;
    animation: rotate 12s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.vox-floating-brand {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.vox-brand-logo {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1)) drop-shadow(0 0 15px rgba(0, 184, 112, 0.15));
    opacity: 0.9;
}

.vox-brand-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: 0.5px;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.96);
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid rgba(0, 184, 112, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.glass-panel {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    background: #FFFFFF;
    border-color: rgba(0, 184, 112, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 184, 112, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 184, 112, 0.09);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 184, 112, 0.3);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1.15rem;
}

/* About / GTM Intro icon override */
.about-card i {
    filter: drop-shadow(0 0 18px rgba(0, 184, 112, 0.3)) !important;
}

/* About */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-primary);
}

.about-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.check-list i {
    color: var(--primary);
}

/* CTA */
.cta-box {
    position: relative;
    padding: 80px 40px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 184, 112, 0.06) 0%, rgba(0, 220, 133, 0.08) 100%) !important;
    border: 1px solid rgba(0, 184, 112, 0.2) !important;
    box-shadow: 0 4px 30px rgba(0, 184, 112, 0.08);
}

.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 184, 112, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding: 80px 0 30px;
    margin-top: 60px;
    background: #F5F9F7;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 20px;
    max-width: 300px;
}

.footer-cnpj {
    font-size: 0.8rem;
    color: rgba(107, 120, 112, 0.7);
    margin-top: 8px !important;
    letter-spacing: 0.5px;
}

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

.footer-links h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-secondary);
}

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

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

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .header-container {
        padding: 0 20px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 30px;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 184, 112, 0.25), transparent);
    z-index: -1;
}

.step-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.step-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 184, 112, 0.3);
    box-shadow: 0 12px 36px rgba(0, 184, 112, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(0, 184, 112, 0.08);
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin: 0 auto 20px;
}

/* Use Cases Section */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.use-case-card {
    position: relative;
    overflow: hidden;
}

.use-case-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    margin-bottom: 15px;
}

.use-case-card h3 i {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: rgba(0, 184, 112, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    font-size: 1.15rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-steps::before {
        display: none;
    }
}

/* Watermark Logo Effect */
.watermark-logo {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    max-width: 800px;
    opacity: 0.02;
    z-index: -1;
    pointer-events: none;
    filter: grayscale(100%);
}

@media (max-width: 991px) {
    .watermark-logo {
        width: 150%;
        top: 30%;
    }
}

/* Enhanced Mobile Optimizations */
@media (max-width: 991px) {
    .hero-buttons {
        width: 100%;
        margin-bottom: 40px;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 18px 0 !important;
        font-size: 1.1rem !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
    }

    .stat-item {
        opacity: 0;
        animation: slideInRight 0.6s ease forwards;
    }

    .stat-item:nth-child(1) {
        animation-delay: 0.2s;
    }

    .stat-item:nth-child(3) {
        animation-delay: 0.4s;
    }

    .stat-item:nth-child(5) {
        animation-delay: 0.6s;
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

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

    .about-moved {
        padding-top: 0;
        background: transparent;
        margin-top: -20px;
        position: relative;
        z-index: 2;
    }

    .about-moved .lead-text {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .hero-visual {
        min-height: 450px;
    }

    .floating-card {
        padding: 25px;
        min-width: 200px;
    }

    .floating-card i {
        font-size: 4rem !important;
        margin-bottom: 10px;
    }

    .floating-card h4 {
        font-size: 1.5rem;
    }

    .floating-card p {
        font-size: 1rem;
    }

    .card-1 {
        left: 0;
        top: 5%;
        animation: floatMobile 5s ease-in-out infinite;
    }

    .card-2 {
        right: 0;
        bottom: 25%;
        animation: floatMobile 5s ease-in-out infinite reverse;
    }

    @keyframes floatMobile {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-15px);
        }
    }
}

/* Pillars Grid — 2×2 layout for 4-card sections */
.pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Result Cards */
.result-card {
    text-align: center;
}

.result-card .icon-box {
    margin: 0 auto 16px;
}

.result-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 10px;
    line-height: 1;
}

/* Process Steps 2-column override */
.process-steps-2col {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .process-steps-2col {
        grid-template-columns: 1fr;
    }
}

/* ============================
   Ecossistema Completo Section
   ============================ */
.ecosystem {
    background: transparent;
}

.eco-arrow {
    display: none;
}

.eco-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    align-items: stretch;
}

.eco-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 28px;
    position: relative;
    transition: all 0.4s ease;
    border-radius: 20px;
    height: 100%;
}

.eco-card p {
    flex: 1;
}

.eco-card:hover {
    border-color: rgba(0, 184, 112, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 184, 112, 0.1);
}

.eco-card:hover .icon-box {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 184, 112, 0.3);
}

.eco-step {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(0, 184, 112, 0.08);
    border: 1px solid rgba(0, 184, 112, 0.2);
    border-radius: 20px;
    padding: 3px 10px;
}

.eco-card .icon-box {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    margin-bottom: 18px;
    margin-top: 8px;
}

.eco-card h3 {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--text-primary);
}

.eco-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Ecossistema Footer */
.eco-footer {
    margin-top: 50px;
}

.eco-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 40px 50px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.eco-footer-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 184, 112, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.eco-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.eco-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    background: rgba(0, 184, 112, 0.09);
    border: 1px solid rgba(0, 184, 112, 0.25);
    color: var(--secondary);
    letter-spacing: 0.5px;
}

.eco-badge-human {
    background: rgba(100, 60, 200, 0.07);
    border-color: rgba(100, 60, 200, 0.2);
    color: #7c4dcc;
}

.eco-divider {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.eco-footer-inner p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 720px;
    line-height: 1.7;
}

/* Tablet: 2 columns */
@media (max-width: 991px) {
    .eco-flow {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .eco-footer-inner {
        padding: 30px 24px;
    }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
    .eco-flow {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .eco-card {
        padding: 36px 24px 28px;
    }

    .eco-card h3 {
        font-size: 1.4rem;
    }

    .eco-card p {
        font-size: 1.05rem;
    }

    .eco-footer-inner p {
        font-size: 0.95rem;
    }
}

/* ============================
   SECTION 1 — Pillars Tabs
   ============================ */
.pillars-tabs {
    margin-top: 60px;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.pillars-tab-nav {
    display: flex;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    background: var(--bg-secondary);
}

.pillar-tab-btn {
    flex: 1;
    padding: 20px 16px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: all 0.3s ease;
}

.pillar-tab-btn:hover {
    color: var(--primary);
    background: rgba(0,184,112,0.04);
}

.pillar-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: #FFFFFF;
}

.pillars-tab-content {
    min-height: 220px;
}

.pillar-panel {
    display: none;
    padding: 52px 56px;
    align-items: center;
    gap: 52px;
    animation: tabFadeIn 0.35s ease;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.pillar-panel.active {
    display: flex;
}

.pillar-icon {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    background: rgba(0,184,112,0.08);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
}

.pillar-text h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pillar-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .pillars-tab-nav { flex-wrap: wrap; }
    .pillar-tab-btn  { flex: 1 1 50%; font-size: 0.82rem; padding: 14px 8px; }
    .pillar-tab-btn span { display: none; }
    .pillar-tab-btn i { font-size: 1.3rem; }
    .pillar-panel { flex-direction: column; padding: 32px 24px; gap: 28px; text-align: center; }
    .pillar-icon  { width: 90px; height: 90px; font-size: 2.6rem; margin: 0 auto; }
    .pillar-text h3 { font-size: 1.5rem; }
}

/* ============================
   SECTION 2 — Timeline Vertical
   ============================ */
.timeline-container {
    position: relative;
    margin-top: 60px;
}

.timeline-spine {
    position: absolute;
    left: 50%;
    top: 26px;
    bottom: 26px;
    width: 2px;
    background: linear-gradient(to bottom,
        transparent,
        rgba(0,184,112,0.35) 10%,
        rgba(0,184,112,0.55) 50%,
        rgba(0,184,112,0.35) 90%,
        transparent);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 52px;
    position: relative;
}

.timeline-item.tl-left {
    padding-right: calc(50% + 58px);
}

.timeline-item.tl-right {
    padding-left: calc(50% + 58px);
    flex-direction: row-reverse;
}

.tl-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.15rem;
    z-index: 2;
    box-shadow: 0 0 0 7px rgba(0,184,112,0.12), 0 4px 16px rgba(0,184,112,0.25);
    flex-shrink: 0;
}

.tl-content {
    width: 100%;
    padding: 28px 30px;
    border-radius: 18px;
}

.tl-step {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(0,184,112,0.08);
    border: 1px solid rgba(0,184,112,0.2);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 12px;
}

.tl-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.tl-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .timeline-spine { left: 26px; }
    .timeline-item.tl-left,
    .timeline-item.tl-right {
        flex-direction: row;
        padding-left: 76px;
        padding-right: 0;
    }
    .tl-dot { left: 26px; }
}

/* ============================
   SECTION 3 — Hub-and-Spoke
   ============================ */
.hub-spoke-wrapper {
    margin: 60px auto 0;
    max-width: 560px;
    width: 100%;
}

.hub-spoke-inner {
    position: relative;
    padding-bottom: 100%;
}

.hub-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: visible;
    pointer-events: none;
}

.spoke-line {
    stroke: rgba(0,184,112,0.45);
    stroke-width: 1.5;
    stroke-dasharray: 6 5;
    animation: spokeDash 2.8s linear infinite;
}

@keyframes spokeDash {
    to { stroke-dashoffset: -44; }
}

.hub-center-node {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 108px; height: 108px;
    background: #FFFFFF;
    border: 2px solid rgba(0,184,112,0.45);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 5;
    animation: hubPulse 3s ease-in-out infinite;
}

@keyframes hubPulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(0,184,112,0.08), 0 4px 20px rgba(0,0,0,0.07); }
    50%       { box-shadow: 0 0 0 12px rgba(0,184,112,0.12), 0 4px 24px rgba(0,184,112,0.15); }
}

.hub-center-node img {
    width: 44px; height: 44px;
    object-fit: contain;
}

.hub-center-node span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.hub-sat-node {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    z-index: 5;
    cursor: pointer;
}

.sat-icon {
    width: 62px; height: 62px;
    background: #FFFFFF;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.hub-sat-node:hover .sat-icon {
    background: var(--primary);
    color: #FFFFFF;
    transform: scale(1.12);
    box-shadow: 0 6px 22px rgba(0,184,112,0.32);
}

.hub-sat-node {
    width: 120px;
}

.sat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.hub-sat-node:hover .sat-label { color: var(--primary); }

.sat-desc {
    font-size: 11px;
    color: #888;
    text-align: center;
    max-width: 120px;
    line-height: 1.45;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.35s ease, max-height 0.35s ease;
    pointer-events: none;
}

.hub-sat-node:hover .sat-desc {
    opacity: 1;
    max-height: 80px;
}

/* Mobile: hub diagram responsive adjustments */
@media (max-width: 768px) {
    .hub-spoke-wrapper {
        max-width: 420px;
        margin: 40px auto 0;
    }
    .hub-center-node {
        width: 80px;
        height: 80px;
        gap: 4px;
    }
    .hub-center-node img {
        width: 32px;
        height: 32px;
    }
    .hub-center-node span {
        font-size: 0.6rem;
    }
    .hub-sat-node {
        width: 80px;
        gap: 4px;
    }
    .sat-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        border-radius: 12px;
    }
    .sat-label {
        font-size: 0.62rem;
        line-height: 1.4;
    }
    .sat-desc {
        opacity: 1;
        max-height: none;
        font-size: 8.5px;
        line-height: 1.4;
        max-width: 80px;
    }
}

/* Extra-small screens (≤380px): compact further to prevent overlap */
@media (max-width: 380px) {
    .hub-spoke-wrapper {
        max-width: 100%;
    }
    .hub-sat-node {
        width: 68px;
        gap: 3px;
    }
    .sat-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    .sat-label {
        font-size: 0.55rem;
        line-height: 1.4;
    }
    .sat-desc {
        font-size: 8px;
        max-width: 68px;
    }
}

/* ============================
   SECTION 4 — Hexagon Grid
   ============================ */
.hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 20px;
    margin-top: 60px;
}

.hex-item {
    width: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hex-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-align: center;
}

.hex-shape {
    width: 150px;
    height: 162px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(145deg, rgba(0,184,112,0.1), rgba(0,184,112,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: var(--primary);
    transition: all 0.35s ease;
}

.hex-inner:hover .hex-shape {
    background: var(--primary);
    color: #FFFFFF;
    filter: drop-shadow(0 6px 18px rgba(0,184,112,0.4));
    transform: translateY(-6px) scale(1.06);
}

.hex-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.hex-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 160px;
    text-align: center;
}

.hex-inner:hover .hex-label { color: var(--primary); }

@media (max-width: 600px) {
    .hex-item  { width: 150px; }
    .hex-shape { width: 120px; height: 130px; font-size: 2rem; }
    .hex-label { font-size: 0.9rem; }
    .hex-desc  { font-size: 0.82rem; }
}

/* ============================
   SECTION 5 — Results Open Layout
   ============================ */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 20px;
    overflow: hidden;
}

.result-item {
    padding: 44px 36px;
    border-right: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: background 0.3s ease;
}

.result-item:nth-child(3n)   { border-right: none; }
.result-item:nth-child(4),
.result-item:nth-child(5),
.result-item:nth-child(6)    { border-bottom: none; }

.result-item:hover { background: rgba(0,184,112,0.03); }

.result-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.result-icon-sm {
    width: 46px; height: 46px;
    background: rgba(0,184,112,0.09);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.result-big-num {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.result-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.result-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 20px;
}

.result-bar-track {
    height: 4px;
    background: rgba(0,184,112,0.12);
    border-radius: 4px;
    overflow: hidden;
}

.result-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 4px;
    transition: width 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
    .results-grid { grid-template-columns: 1fr 1fr; }
    .result-item:nth-child(3n)   { border-right: 1px solid rgba(0,0,0,0.06); }
    .result-item:nth-child(2n)   { border-right: none; }
    .result-item:nth-child(4)    { border-bottom: 1px solid rgba(0,0,0,0.06); }
    .result-item:nth-child(5),
    .result-item:nth-child(6)    { border-bottom: none; }
}

@media (max-width: 480px) {
    .results-grid { grid-template-columns: 1fr; }
    .result-item  { border-right: none !important; border-bottom: 1px solid rgba(0,0,0,0.06) !important; }
    .result-item:last-child { border-bottom: none !important; }
}

/* ============================
   SECTION 6 — Horizontal Stepper
   ============================ */
.stepper {
    margin-top: 60px;
}

.stepper-track {
    display: flex;
    position: relative;
    gap: 0;
}

.stepper-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(0,184,112,0.2),
        rgba(0,184,112,0.6),
        rgba(0,184,112,0.6),
        rgba(0,184,112,0.2));
    z-index: 0;
}

.stepper-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

.stepper-circle {
    width: 56px; height: 56px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 24px;
    z-index: 2;
    box-shadow: 0 0 0 7px rgba(0,184,112,0.08);
    transition: all 0.3s ease;
}

.stepper-step:hover .stepper-circle {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 0 0 7px rgba(0,184,112,0.15), 0 4px 18px rgba(0,184,112,0.3);
}

.stepper-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.stepper-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .stepper-track {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 28px;
        gap: 0;
    }
    .stepper-track::before {
        top: 0; left: 27px;
        width: 2px; height: 100%;
        background: linear-gradient(to bottom,
            rgba(0,184,112,0.2),
            rgba(0,184,112,0.6),
            rgba(0,184,112,0.6),
            rgba(0,184,112,0.2));
    }
    .stepper-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 40px;
        gap: 20px;
        padding: 0;
    }
    .stepper-circle { margin-bottom: 0; flex-shrink: 0; }
    .stepper-body   { padding-top: 8px; }
}
