/* Lajara AI — Brand Styles (BEM) */

:root { color-scheme: light only; }

/* ── Lucide icons defaults ── */

i[data-lucide] {
    display: inline-flex;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

:root {
    --la-primary: #1a56db;
    --la-primary-hover: #1648b5;
    --la-primary-light: #f0f6ff;
    --la-primary-lighter: #f7faff;
    --la-blue-band: #e8f0fe;
    --la-blue-band-dark: #dbe8fd;
    --la-dark: #0f172a;
    --la-text: #334155;
    --la-muted: #64748b;
    --la-border: #e2e8f0;
    --la-white: #ffffff;
    --la-radius: 8px;
    --la-container: 1440px;
}

/* ── Reset Pico defaults ── */

#app > header,
#app > footer {
    padding-block: var(--pico-block-spacing-vertical);
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-feature-settings: "ss04" on, "ss02" on, "clig" off, "liga" off;
    color: var(--la-text);
    background: var(--la-white);
}

.container {
    max-width: var(--la-container);
    margin: 0 auto;
    padding-inline: 1.5rem;
}

b, strong {
    font-weight: 600;
}

/* ── Header ── */

/* ── Section ── */

.section {
    padding: 4.5rem 0;
}

.section--alt {
    background: var(--la-primary-lighter);
}

.section--blue {
    background: var(--la-blue-band);
}

.section--blue h2 {
    color: var(--la-dark);
}

.section--blue p {
    color: var(--la-text);
}

.section--center {
    text-align: center;
}

.section h2 {
    font-size: 1.85rem;
    color: var(--la-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section__subtitle {
    font-size: 1rem;
    color: var(--la-muted);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* ── Trust ── */

.trust {
    text-align: center;
    padding: 1.75rem 0 2.5rem;
    margin-top: 0;
    background: var(--la-primary-lighter);
}

zjs-sections-hero + .trust {
    margin-top: 0;
}

.trust__heading {
    font-size: 0.75rem;
    color: var(--la-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.trust__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust__logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.trust__logo:hover {
    opacity: 1;
}

/* ── Feature (home page blocks) ── */

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    padding: 3rem 0;
}

.feature + .feature {
    border-top: 1px solid var(--la-border);
}

.feature--reverse {
    direction: rtl;
}

.feature--reverse > * {
    direction: ltr;
}

.feature h3 {
    font-size: 1.25rem;
    color: var(--la-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature p {
    color: var(--la-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature__visual {
    background: linear-gradient(135deg, var(--la-blue-band) 0%, var(--la-blue-band-dark) 100%);
    border-radius: 16px;
    padding: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    font-size: 3rem;
}

/* ── Steps ── */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0 2.5rem;
}

.steps__item {
    text-align: center;
}

.steps__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--la-primary);
    color: var(--la-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.steps__item h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--la-dark);
    font-weight: 600;
}

.steps__item p {
    font-size: 0.875rem;
    color: var(--la-muted);
}

/* ── Buttons ── */

.btn--band {
    display: inline-block;
    background: var(--la-primary);
    color: var(--la-white);
    padding: 0.7rem 1.75rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}

.btn--band:hover {
    background: var(--la-primary-hover);
    transform: translateY(-1px);
    color: var(--la-white);
}

.btn--primary {
    display: inline-block;
    background: var(--la-primary);
    color: var(--la-white);
    padding: 0.75rem 1.75rem;
    border-radius: var(--la-radius);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn--primary--inline {
    width: auto;
}

.btn--primary:hover {
    background: var(--la-primary-hover);
    color: var(--la-white);
}

.btn--outline {
    display: inline-block;
    background: transparent;
    color: var(--la-primary);
    padding: 0.75rem 1.75rem;
    border-radius: var(--la-radius);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--la-primary);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    width: 100%;
}

.btn--outline:hover {
    background: var(--la-primary);
    color: var(--la-white);
}

/* ── Scores ── */

.scores {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2rem auto 3rem;
}

.scores__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.scores__circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2.5px solid var(--la-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--la-primary);
    flex-shrink: 0;
}

.scores__label {
    font-size: 0.8rem;
    color: var(--la-text);
    border: 1px solid var(--la-border);
    border-radius: 20px;
    padding: 0.3rem 1rem;
    white-space: nowrap;
}

/* ── Testimonials ── */

.testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.testimonials__card {
    background: linear-gradient(135deg, var(--la-primary-light) 0%, var(--la-white) 100%);
    border: 1px solid var(--la-border);
    border-radius: 12px;
    padding: 2rem 2rem 1.75rem;
    text-align: left;
}

.testimonials__stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.testimonials__stars svg {
    width: 18px;
    height: 18px;
    fill: #f59e0b;
    stroke: #f59e0b;
}

.testimonials__card blockquote {
    margin: 0 0 1.5rem;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--la-text);
    border: none;
    padding: 0;
}

.testimonials__card cite {
    font-style: normal;
    font-size: 0.8rem;
    color: var(--la-muted);
}

.testimonials__card cite strong {
    display: block;
    color: var(--la-dark);
    font-size: 0.875rem;
    margin-bottom: 0.1rem;
}

.testimonials__disclaimer {
    font-size: 0.7rem;
    color: var(--la-muted);
    margin-top: 1.5rem;
    text-align: center;
}

/* ── Pricing ── */

.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing__card {
    background: var(--la-white);
    border: 1px solid var(--la-border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing__card--featured {
    border-color: var(--la-primary);
    border-width: 2px;
    position: relative;
}

.pricing__card--featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--la-primary);
    color: var(--la-white);
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing__card h3 {
    font-size: 1.25rem;
    color: var(--la-dark);
    margin-bottom: 0.5rem;
}

.pricing__subtitle {
    color: var(--la-muted);
    font-size: 0.9rem;
}

.pricing__price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--la-dark);
    margin: 1rem 0 0.25rem;
}

.pricing__period {
    font-size: 0.9rem;
    color: var(--la-muted);
    margin-bottom: 1.5rem;
}

.pricing__estimate {
    font-size: 0.75rem;
    color: var(--la-muted);
    text-align: center;
    margin: 0 0 0.75rem;
    font-style: italic;
}

.pricing__footnote {
    font-size: 0.6rem;
    color: var(--la-dark);
    text-align: center;
    margin-top: 1.75rem;
}

.pricing__card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.pricing__card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--la-border);
    font-size: 0.95rem;
    color: var(--la-dark);
}

.pricing__card ul li::before {
    content: "\2713";
    color: var(--la-primary);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* ── FAQ ── */

.faq {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.faq__item {
    border-bottom: 1px solid var(--la-border);
    padding: 1.5rem 0;
}

.faq__item h3 {
    font-size: 1.1rem;
    color: var(--la-dark);
    margin-bottom: 0.5rem;
}

.faq__item p {
    color: var(--la-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Features page ── */

/* ── Stats bar ── */

.stats {
    background: var(--la-white);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--la-border);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats__number {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--la-primary);
    line-height: 1.2;
}

.stats__label {
    font-size: 0.85rem;
    color: var(--la-muted);
    margin-top: 0.25rem;
    display: block;
}

/* ── Feature blocks (features page) ── */

.fblock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fblock--reverse {
    direction: rtl;
}

.fblock--reverse > * {
    direction: ltr;
}

.fblock__text h2 {
    font-size: 1.65rem;
    color: var(--la-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.fblock__text p {
    color: var(--la-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.fblock__note {
    font-style: italic;
    font-size: 0.9rem !important;
    color: var(--la-text) !important;
    margin-top: 1rem !important;
}

.fblock__visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.fblock__visual--icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--la-blue-band) 0%, var(--la-blue-band-dark) 100%);
    border-radius: 16px;
    padding: 3rem;
    min-height: 280px;
}

.fblock__shield {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.fblock__shield-label {
    font-size: 1rem;
    color: var(--la-text);
    font-weight: 600;
}

/* ── Checklist ── */

.checklist {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 1rem 0;
}

.checklist li {
    position: relative;
    padding-left: 1.75rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    color: var(--la-text);
    line-height: 1.6;
    font-size: 0.9rem;
    list-style: none !important;
}

.checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
    font-size: 0.95rem;
}

/* ── Channels (features page) ── */

.channels {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.channels__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0.85rem;
    background: var(--la-white);
    border: 1px solid var(--la-border);
    border-radius: 10px;
}

.channels__icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
}

.channels__item strong {
    display: block;
    color: var(--la-dark);
    font-size: 0.85rem;
}

.channels__item span {
    font-size: 0.8rem;
    color: var(--la-muted);
    line-height: 1.5;
}

/* ── Integrations grid ── */

.integrations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.integrations__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.25rem 0.75rem;
    background: var(--la-white);
    border: 1px solid var(--la-border);
    border-radius: 12px;
    transition: box-shadow 0.2s;
}

.integrations__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.integrations__icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}

.integrations__icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.integrations__item span:last-child {
    font-size: 0.75rem;
    color: var(--la-muted);
    font-weight: 500;
}

/* ── Footer ── */

.footer {
    background: var(--la-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 3.5rem 0 1.5rem;
    margin-top: 0;
}

.section:last-of-type {
    margin-bottom: 0;
}

.section--blue:last-of-type {
    margin-bottom: 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand {
    font-size: 1.35rem;
    color: var(--la-white);
    display: block;
    margin-bottom: 0.75rem;
}

.footer__col p {
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0;
    color: var(--la-white);
    font-weight: 400;
    opacity: 0.8;
}

.footer__col strong {
    display: block;
    color: var(--la-white);
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer__col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0;
}

.footer__col ul li {
    list-style: none !important;
    margin-bottom: 0;
    padding-left: 0;
}

.footer__col ul a {
    color: var(--la-white);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 300;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer__col ul a:hover {
    opacity: 1;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: left;
}

.footer__bottom p {
    margin: 0 0 0.5rem;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__disclaimer {
    max-width: 100%;
    text-align: left;
    margin: 0 0 0.75rem !important;
    line-height: 1.5;
}

/* ── Error ── */

.error {
    text-align: center;
    padding: 8rem 0;
}

.error__code {
    font-size: 6rem;
    color: var(--la-primary);
    margin-bottom: 0.5rem;
}

.error__message {
    color: var(--la-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* ── Responsive ── */

@media (max-width: 768px) {

    .feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature--reverse {
        direction: ltr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .scores {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .fblock {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fblock--reverse {
        direction: ltr;
    }

    .integrations {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-inline: auto;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3rem 0;
    }

}
