/* ==========================================================================
   1. CONFIGURAÇÕES GLOBAIS E VARIÁVEIS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --toolk-green: #b6ec44;
    --toolk-dark: #08274c;
    --toolk-dark-deep: #051a33;
    --toolk-cyan: #9cced4;
}

* { font-family: 'Montserrat', sans-serif !important; }

/* --- AJUSTES DE ÍCONES SOCIAIS --- */
.social-link svg, .whatsapp-icon svg {
    fill: #ffffff !important;
    transition: all 0.3s ease;
}
.social-link:hover svg, .group:hover .whatsapp-icon svg {
    fill: var(--toolk-green) !important;
}

/* ==========================================================================
   2. COMPONENTES: BOTÕES E LINKS
   ========================================================================== */
.btn-base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 9999px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.05em;
}

.btn-access-top {
    font-size: 9px !important;
    font-weight: 800;
    padding: 6px 18px !important;
    border: 1px solid var(--toolk-green) !important;
    color: var(--toolk-green) !important;
    background: transparent;
}
.btn-access-top:hover {
    background: var(--toolk-green);
    color: var(--toolk-dark) !important;
}

.btn-demo-main {
    font-size: 10px !important;
    font-weight: 800;
    padding: 10px 24px !important;
    background: var(--toolk-green) !important;
    color: var(--toolk-dark) !important;
    box-shadow: 0 4px 12px rgba(182, 236, 68, 0.15);
}
.btn-demo-main:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(182, 236, 68, 0.3);
}

.btn-help-main {
    font-size: 10px !important;
    font-weight: 600;
    padding: 10px 24px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}
.btn-help-main:hover {
    border-color: var(--toolk-cyan);
    color: var(--toolk-cyan) !important;
}

.nav-link {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #cbd5e1 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.nav-link:hover {
    color: var(--toolk-green) !important;
}

.tk-gradient {
    background: linear-gradient(90deg, #b6ec44 0%, #9cced4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

/* MEGA MENU STYLING */
.menu-cat-title {
    font-size: 10px !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
    display: block;
}

.menu-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.menu-list li {
    margin-bottom: 10px;
}

.menu-list li a {
    font-size: 13px !important;
    font-weight: 600;
    color: #e2e8f0;
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: block;
}

.menu-list li a:hover {
    color: var(--toolk-green);
    transform: translateX(5px);
}

/* Previne que o menu suma ao tentar passar o mouse do link Soluções para o dropdown */
[x-cloak] { display: none !important; }

/* ==========================================================================
   3. SEÇÃO: HERO / SLIDER
   ========================================================================== */
.hero-stack {
    display: grid;
    grid-template-areas: "stack";
    align-items: center;
    min-height: 600px;
}

.hero-slide {
    grid-area: stack;
}

.tk-spot {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(182, 236, 68, 0.3);
    padding: 10px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 20;
}

.tk-spot span {
    font-size: 10px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    white-space: nowrap;
}

.tk-spot::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #b6ec44;
    border-radius: 50%;
    box-shadow: 0 0 10px #b6ec44;
}

.slider-dots-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 50;
}

.dot-btn {
    height: 4px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}
.dot-active { background: #b6ec44 !important; width: 40px !important; }
.dot-inactive { background: rgba(255,255,255,0.2) !important; width: 12px !important; }

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ani-float {
    animation: floating 5s ease-in-out infinite;
}

.d-1 { animation-delay: 0s; }
.d-2 { animation-delay: 1s; }
.d-3 { animation-delay: 2s; }

/* ==========================================================================
   4. SEÇÃO: VÍDEO
   ========================================================================== */
.tk-badge-video {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(182, 236, 68, 0.3);
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tk-badge-video span {
    font-size: 10px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.tk-badge-video::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #b6ec44;
    border-radius: 50%;
    box-shadow: 0 0 10px #b6ec44;
}

.play-button-glass {
    width: 90px;
    height: 90px;
    background: rgba(182, 236, 68, 0.2);
    border: 1px solid rgba(182, 236, 68, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px rgba(182, 236, 68, 0.2);
}

.play-button-glass:hover {
    transform: scale(1.1);
    background: var(--toolk-green);
    box-shadow: 0 0 50px rgba(182, 236, 68, 0.5);
}

.play-button-glass svg {
    fill: white;
    transition: all 0.5s;
    margin-left: 5px;
}

.play-button-glass:hover svg {
    fill: var(--toolk-dark);
}

/* ==========================================================================
   5. SEÇÃO: JORNADA (LADO A LADO)
   ========================================================================== */
.section-jornada {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background-color: #08274c;
    position: relative;
}

.tk-pre-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(182, 236, 68, 0.05);
    border: 1px solid rgba(182, 236, 68, 0.2);
    padding: 6px 14px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.tk-pre-header span {
    font-size: 10px !important;
    font-weight: 800;
    color: var(--toolk-green);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jornada-img-side {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

@media (min-width: 1024px) {
    .jornada-grid {
        display: grid;
        grid-template-columns: 35% 65%;
        align-items: center;
        gap: 40px;
    }
}

/* ==========================================================================
   6. SEÇÃO: ECOSSISTEMA DE FERRAMENTAS (CARDS & TABS)
   ========================================================================== */
.ecosystem-section {
    background-color: #051a33;
    padding: 80px 24px;
}

.tab-nav-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: 20px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.tab-nav-item {
    padding: 10px 22px;
    border-radius: 14px;
    font-size: 10px !important;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    letter-spacing: 1px;
}

.tab-nav-item.active {
    background: rgba(182, 236, 68, 0.1) !important;
    color: #b6ec44 !important;
}

/* Estilo Add-ons Alinhado */
.tab-nav-item.is-addon {
    border: 1px dashed rgba(182, 236, 68, 0.3);
}

.tab-content-wrapper {
    display: grid;
    grid-template-areas: "content";
    margin-top: 40px;
}

.tool-grid {
    grid-area: content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.tool-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 280px;  
    height: 190px;
}

.tool-card:hover {
    border-color: #b6ec44;
    background: rgba(182, 236, 68, 0.03);
    transform: translateY(-8px);
}

/* --- CORREÇÃO DO NINEBOX E ÍCONES --- */
.tool-card svg, .tool-card svg * {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    fill: #ffffff !important; /* Força branco */
    transition: all 0.4s ease;
}

.tool-card:hover svg, .tool-card:hover svg * {
    fill: #b6ec44 !important; /* Verde Toolk no hover */
}

.tool-card span {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cbd5e1;
}

/* --- ESPAÇAMENTO DO BOTÃO DE DEMONSTRAÇÃO --- */
.ecosystem-footer {
    margin-top: 100px;
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   12. SEÇÃO: FOOTER (REVISADO)
   ========================================================================== */
.site-footer {
    background-color: #051a33;
    padding: 80px 24px 40px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-title {
    font-size: 11px !important;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 25px;
}

.footer-link {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none !important;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.footer-link:hover {
    color: var(--toolk-green) !important;
    transform: translateX(5px);
}

.footer-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 300px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================================================
   8. SEÇÃO: DIFERENCIAIS (FEATURES) - ESCALA REFINADA
   ========================================================================== */
.section-features {
    background-color: #08274c;
    padding: 80px 24px; /* Reduzido de 120px para caber na dobra */
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px; /* Reduzido para maior compacidade */
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 35px 30px; /* Reduzido para não ficar "pesado" */
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(182, 236, 68, 0.2);
    transform: translateY(-8px);
}

.feature-icon-circle {
    width: 48px; /* Reduzido de 56px */
    height: 48px;
    border-radius: 50%;
    background: rgba(182, 236, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #b6ec44;
    border: 1px solid rgba(182, 236, 68, 0.2);
}

.feature-card h3 {
    font-size: 18px; /* Proporção mais elegante */
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 13px; /* Fonte menor para leitura confortável */
    color: #9cced4;
    line-height: 1.6;
    font-weight: 500;
}

/* Callout White Label Compacto */
.white-label-callout {
    margin-top: 60px; /* Menor distância */
    padding: 35px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(182, 236, 68, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.white-label-badge {
    background: rgba(156, 206, 212, 0.1);
    color: #9cced4;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* ==========================================================================
   9. SECÇÃO: PARCEIROS E CLIENTES (VERSÃO PREMIUM GHOST)
   ========================================================================== */
.section-partners {
    background-color: #051a33;
    padding: 100px 24px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.partner-label {
    font-size: 13px !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #475569; /* Cinza bem discreto no estado ocioso */
    margin-bottom: 50px;
    display: block;
    transition: color 0.3s ease;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* CÁPSULA GHOST */
.logo-capsule {
    background: rgba(255, 255, 255, 0.02); /* Quase invisível */
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 24px;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.logo-item {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    /* LOGO 100% BRANCA POR PADRÃO */
    filter: brightness(0) invert(1); 
    opacity: 0.4;
    transition: all 0.4s ease;
}

/* INTERAÇÃO: O "ACORDAR" DA SEÇÃO */
.logo-capsule:hover {
    background: rgba(255, 255, 255, 0.75); /* Fundo mais branco para dar leitura */
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.logo-capsule:hover .logo-item {
    filter: brightness(1) invert(0); /* Volta a cor original */
    opacity: 1;
    transform: scale(1.1);
}

/* CALLOUT FINAL - COESÃO COM O RESTO DO SITE */
.trust-callout-clean {
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 60px;
    text-align: center;
}


/* ==========================================================================
   10. SEÇÃO: DEPOIMENTOS (EDITORIAL SLIDER) - AZUL DEEP BLUE NAS ASPAS
   ========================================================================== */
.section-testimonials {
    padding: 100px 24px;
    background-color: #08274c;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 80px 40px 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.4);
}

/* Cápsula das Aspas */
.quote-box {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: #b6ec44; /* Verde Toolk */
    border-radius: 22px; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(182, 236, 68, 0.2);
}

/* Filtro Inteligente para converter o SVG branco em Azul Deep Blue (#08274c) */
.quote-box img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.testimonial-content {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
    min-height: 140px;
}

@media (min-width: 1024px) {
    .testimonial-content { font-size: 22px; }
}

.author-info h5 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 11px;
    font-weight: 700;
    color: #b6ec44;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testi-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testi-dot {
    height: 4px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    width: 12px;
}

.testi-dot.active {
    background: #b6ec44;
    width: 40px;
}

/* ==========================================================================
   11. SEÇÃO: FORMULÁRIO / CONTATO
   ========================================================================== */
.section-contact {
    padding: 80px 24px;
    background: radial-gradient(circle at bottom right, #131133, #08274c);
    position: relative;
}

/* Ajuste de links de compliance no formulário */
.section-contact a {
    color: inherit;
    text-decoration-thickness: 1px;
    transition: color 0.3s ease;
}

.section-contact a:hover {
    color: var(--toolk-green) !important;
}

.form-container {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 45px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.form-group { margin-bottom: 18px; }
.form-label {
    display: block;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9cced4;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

.form-input:focus {
    border-color: #b6ec44 !important;
    box-shadow: 0 0 15px rgba(182, 236, 68, 0.1) !important;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23b6ec44'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    cursor: pointer;
}

select.form-input option {
    background-color: #08274c;
    color: white;
}

@media (max-width: 1024px) {
    .form-container { padding: 30px 20px; border-radius: 24px; }
}

/* Esconder o badge do reCAPTCHA e manter a elegância */
.grecaptcha-badge { 
    visibility: hidden; 
}

/* ==========================================================================
   12. TEMPLATE: PÁGINAS INTERNAS DE FERRAMENTA (REVISADO)
   ========================================================================== */
.tool-hero {
    padding: 140px 24px 80px 24px;
    background: radial-gradient(circle at top right, #0a2e5c, #08274c);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(182, 236, 68, 0.1);
    border: 1px solid rgba(182, 236, 68, 0.2);
    border-radius: 99px;
    color: #b6ec44;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tool-mockup-container {
    position: relative;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
}

.tool-mockup-container img {
    border-radius: 24px;
}

/* --- GRID DE IMPACTO (PASSO A PASSO) --- */
.tool-features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 1024px) {
    .tool-features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 40px;
    transition: all 0.4s ease;
    position: relative;
}

.feature-step-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--toolk-green);
    transform: translateY(-10px);
}

.step-number {
    font-size: 56px;
    font-weight: 900;
    font-style: italic;
    color: rgba(182, 236, 68, 0.15);
    line-height: 1;
    margin-bottom: 20px;
}

.feature-step-card h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 15px;
}

.feature-step-card p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
}

/* --- GRID DE FUNCIONALIDADES TÉCNICAS --- */
.section-functionalities {
    background-color: #08274c;
    padding: 100px 24px;
}

.tool-func-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
}

@media (min-width: 1024px) {
    .tool-func-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }
}

.func-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s ease;
}

.func-card:hover {
    border-color: rgba(182, 236, 68, 0.3);
    background: rgba(182, 236, 68, 0.02);
    transform: translateY(-8px);
}

.func-card svg {
    width: 32px;
    height: 32px;
    stroke: #b6ec44;
    margin-bottom: 20px;
}

.func-card h5 {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
}

.func-card p {
    font-size: 13px;
    color: #9cced4;
    line-height: 1.6;
}