/* Custom styles to apply the Inter font */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #F3F4F6; /* Light Gray */
    position: relative;
    overflow-x: hidden;
}

/* Custom gradient text */
.gradient-text {
    background: linear-gradient(90deg, #4f46e5, #ec4899, #f97316); /* Official Logo Gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Custom gradient for buttons */
.gradient-bg {
    background: linear-gradient(90deg, #4f46e5, #ec4899, #f97316); /* Official Logo Gradient */
}

/* CTA Pulse Animation */
.cta-pulse {
    position: relative;
    overflow: hidden;
}
.cta-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
    animation: pulse-shine 4s linear infinite;
}

@keyframes pulse-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Benefit Cards */
.benefit-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    text-align: center;
}

/* Advantage Cards */
.advantage-card-improved {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.advantage-card-improved:hover {
    transform: translateY(-5px);
    border-color: #4f46e5;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.advantage-icon {
    flex-shrink: 0;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(90deg, #4f46e5, #ec4899, #f97316);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
}


/* Audience Profiles */
.audience-profile-improved {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.audience-profile-improved:hover {
    transform: translateY(-5px);
    border-color: #4f46e5;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

header span {
    background: linear-gradient(90deg, #4f46e5, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
}

/* Plan Cards */
.plan-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
}
.plan-card-popular {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #4f46e5;
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgb(79 70 229 / 0.2), 0 8px 10px -6px rgb(79 70 229 / 0.2);
    display: flex;
    flex-direction: column;
}

.bonus-highlight {
    background-color: #fefce8; /* yellow-50 */
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    border-left: 4px solid #facc15; /* yellow-400 */
}

.bonus-highlight-gradient {
    background: linear-gradient(90deg, #4f46e5, #ec4899, #f97316);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 600;
}


/* Styles for the active toggle button */
.toggle-btn.active {
    background: linear-gradient(90deg, #4f46e5, #ec4899, #f97316);
    color: white;
}

/* FAQ Item */
.faq-item {
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 1.5rem;
}
.faq-arrow {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-answer {
    display: none;
    padding: 1.5rem;
    padding-top: 0;
}
.faq-arrow.rotate-180 {
    transform: rotate(180deg);
}

