body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
}

.glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.process-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #16a34a 0%, rgba(22, 163, 74, 0.4) 100%); 
    border-radius: 4px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .process-line-container { 
        display: block; 
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, #16a34a 0%, rgba(22, 163, 74, 0.4) 100%);
    padding-bottom: 0.1em; 
}

.btn-gradient {
    background-image: linear-gradient(135deg, #16a34a 0%, rgba(22, 163, 74, 0.4) 100%);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background-image: linear-gradient(135deg, #15803d 0%, rgba(22, 163, 74, 0.4) 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px -5px rgba(22, 163, 74, 0.4);
}

/* Logo hover effect */
.logo-hover {
    transition: all 0.3s ease;
}

.logo-hover:hover {
    transform: scale(1.05);
}

.faq-item {
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(22, 163, 74, 0.3);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    border-color: rgba(22, 163, 74, 0.5);
    box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.1);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding-top: 0.5rem;
}

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

.faq-button {
    transition: background-color 0.2s ease;
}

.faq-item.active .faq-button {
    background-color: rgba(22, 163, 74, 0.05);
}

.p-6.flex.items-center.justify-center.text-brand-600.font-bold.bg-brand-50\/30.fee-adv {
    color: green !important;
    font-size: 1.2rem;
}

span.text-2xl.font-bold.text-brand-600.fee-adv {
    color: green !important;
    font-size: 1.2rem;
}

span.text-2xl.font-bold.text-red-500 {
    font-size: 1.2rem !important;
}

/* Fade effect for all brand-600 text - gradient from dark to 40% fade */
.text-brand-600 {
    background: linear-gradient(135deg, #16a34a 0%, rgba(22, 163, 74, 0.4) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Brand Color Override for Hover States with Fade Effect */
.hover\:text-brand-600:hover {
    background: linear-gradient(135deg, #16a34a 0%, rgba(22, 163, 74, 0.4) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
}

