/* Lead Vibrant logo colors: #031C15 (dark green), #95D62E (accent green) */
:root {
    --background: 165 81% 6%;
    --primary: 84 66% 51%;
    --secondary-foreground: 84 66% 51%;
    /* #95d62e */
    --gradient-from: #95D62E;
    --gradient-to: #95D62E;
}

.text-secondary-foreground {
    color: #95d62e !important;
}

/* CTA buttons: ensure visible background and readable text */
a.btn-cta-trial {
    background: linear-gradient(to right, #95D62E 0%, #7ab82a 50%) !important;
    color: #031C15 !important;
}

a.btn-cta-trial:hover {
    box-shadow: 0 10px 40px rgba(149, 214, 46, 0.35);
}

/* Feature cards: white background, theme color on hover */
.feature-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.feature-card:hover {
    background: linear-gradient(135deg, hsla(83, 67%, 51%, 1) 0%, hsla(149, 54%, 31%, 1) 100%);
}
.feature-card h5,
.feature-card h5 [class*="svg"],
.feature-card svg {
    color: #111;
    transition: color 0.3s ease;
}
.feature-card p {
    color: #4b5563;
    transition: color 0.3s ease;
}
.feature-card:hover h5,
.feature-card:hover h5 span,
.feature-card:hover svg {
    color: #fff !important;
}
.feature-card:hover p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Pricing tables: white background, visible text and buttons */
.pricing-card {
    background: #fff !important;
}
.pricing-card .gradient-text {
    color: #031C15;
    background: none;
    -webkit-text-fill-color: #031C15;
}
.pricing-card [class*="text-heading-foreground"],
.pricing-card .align-sub,
.pricing-card .font-heading {
    color: #111 !important;
}
.pricing-card p,
.pricing-card li {
    color: #374151 !important;
}
.pricing-card hr {
    border-color: #e5e7eb;
}
/* Pricing CTA buttons: pill-shaped lime green, dark bold text (matches brand) */
.pricing-card a[href*="register"],
.pricing-card a[href^="mailto"] {
    background: linear-gradient(to right, #95D62E 0%, #7ab82a 50%) !important;
    color: #031C15 !important;
    border-radius: 9999px !important;
    font-weight: 700 !important;
}
.pricing-card a[href*="register"]:hover,
.pricing-card a[href^="mailto"]:hover {
    box-shadow: 0 10px 40px rgba(149, 214, 46, 0.35);
}
.pricing-card button[type="button"] {
    border-radius: 9999px !important;
    font-weight: 700 !important;
}

/* Pricing table checkmarks: brand green tick on soft green oval with glow */
.pricing-tick {
    display: inline-grid;
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    flex-shrink: 0;
    place-content: center;
    border-radius: 50%;
    background: rgba(149, 214, 46, 0.35);
    color: #7ab82a;
    box-shadow: 0 0 8px rgba(149, 214, 46, 0.3);
}

/* FAQ: keep question text visible when accordion is active */
.lqd-accordion-item button .faq-question {
    color: hsl(var(--heading-foreground));
}
.lqd-accordion-item button.lqd-is-active .faq-question,
.lqd-accordion-item.lqd-is-active button .faq-question {
    color: #95d62e;
}

/* Trusted-by client logos: white color + same size */
.client-logo {
    filter: brightness(0) invert(1);
    width: 120px;
    height: 48px;
    object-fit: contain;
    object-position: center;
}

.google-ads-728 {
    width: 100%;
    max-width: 728px;
    height: auto;
}

.site-logo img {
    width: 80%;
}

/* Prevent horizontal scroll on all screen sizes */
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Testimonial cards: white card, green stars, client block fixed at bottom */
.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}
.testimonial-card .testimonial-quote {
    flex: 1;
    min-height: 0;
}
.testimonial-card .testimonial-client {
    margin-top: auto;
    padding-top: 1rem;
}
.testimonial-card .stars {
    color: #95D62E;
}
@keyframes marquee-testimonial {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-testimonial-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Services tab triggers: fix line height for multi-line labels (e.g. AI Business Reports, Invoices & Payments) */
.lqd-tabs-triggers button[data-target] > span {
    line-height: 1.5;
    align-items: flex-start;
}
/* Responsive: comfortable spacing between trigger items on all screen sizes */
.lqd-tabs-triggers {
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .lqd-tabs-triggers {
        gap: 2rem;
    }
}
@media (min-width: 1024px) {
    .lqd-tabs-triggers {
        gap: 3rem;
    }
}
