.ai-landing-hero {
    background:
        radial-gradient(circle at 76% 10%, rgba(245, 158, 11, .16), transparent 26%),
        linear-gradient(135deg, #f8fafc 0%, #edf7f4 54%, #fff7ed 100%);
    border-bottom: 1px solid rgba(15, 23, 42, .07);
    padding: 52px 0 44px;
}

.ai-landing-hero__grid {
    align-items: center;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.ai-landing-hero__eyebrow {
    color: #0f766e;
    font-size: 1.35rem;
    font-weight: 900;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.ai-landing-hero h1 {
    color: #172033;
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    font-weight: 900;
    line-height: 1.08;
    margin: 0 0 18px;
}

.ai-landing-hero__content > p:not(.ai-landing-hero__eyebrow) {
    color: #475569;
    font-size: 1.7rem;
    line-height: 1.65;
    margin: 0;
}

.ai-landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.ai-landing-btn {
    border-radius: 8px;
    display: inline-flex;
    font-size: 1.5rem;
    font-weight: 850;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.ai-landing-btn--primary {
    background: #0f766e;
    box-shadow: 0 12px 28px rgba(15, 118, 110, .24);
    color: #ffffff;
}

.ai-landing-btn--primary:hover {
    background: #115e59;
    color: #ffffff;
    transform: translateY(-2px);
}

.ai-landing-btn--ghost {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .12);
    color: #172033;
}

.ai-landing-btn--ghost:hover {
    box-shadow: 0 12px 28px rgba(15, 23, 42, .09);
    color: #172033;
    transform: translateY(-2px);
}

.ai-landing-hero__panel {
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    box-shadow: 0 24px 52px rgba(15, 23, 42, .13);
    padding: 14px;
}

.ai-landing-preview {
    background: #172033;
    border-radius: 8px;
    overflow: hidden;
}

.ai-landing-preview__bar {
    align-items: center;
    background: #0f172a;
    display: flex;
    gap: 6px;
    padding: 12px;
}

.ai-landing-preview__bar span {
    background: #94a3b8;
    border-radius: 50%;
    display: block;
    height: 9px;
    width: 9px;
}

.ai-landing-preview__image {
    align-content: center;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, .08), rgba(15, 23, 42, .74)),
        linear-gradient(135deg, #0f766e, #f59e0b);
    color: #ffffff;
    display: grid;
    min-height: 320px;
    padding: 28px;
    text-align: center;
}

.ai-landing-preview__image i {
    font-size: 4.2rem;
    margin-bottom: 16px;
}

.ai-landing-preview__image strong {
    font-size: 2.2rem;
    line-height: 1.25;
}

.ai-landing-preview__image small {
    font-size: 1.35rem;
    line-height: 1.55;
    margin-top: 10px;
    opacity: .88;
}

.ai-landing-section {
    padding: 46px 0;
}

.ai-landing-section--soft {
    background: #f8fafc;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    border-top: 1px solid rgba(15, 23, 42, .06);
}

.ai-landing-section__header {
    margin: 0 auto 22px;
    max-width: 760px;
    text-align: center;
}

.ai-landing-section__header h2,
.ai-landing-split h2 {
    color: #172033;
    font-size: 2.65rem;
    font-weight: 900;
    margin: 0 0 10px;
}

.ai-landing-section__header p,
.ai-landing-split p {
    color: #64748b;
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0;
}

.ai-landing-feature-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ai-landing-feature {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    display: flex;
    gap: 10px;
    min-height: 64px;
    padding: 16px;
}

.ai-landing-feature i {
    align-items: center;
    background: #ecfdf5;
    border-radius: 50%;
    color: #0f766e;
    display: flex;
    flex: 0 0 30px;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.ai-landing-feature span {
    color: #172033;
    font-size: 1.45rem;
    font-weight: 750;
    line-height: 1.35;
}

.ai-landing-steps {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ai-landing-steps div {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    padding: 18px;
}

.ai-landing-steps strong {
    align-items: center;
    background: #f59e0b;
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    font-size: 1.7rem;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    margin-bottom: 12px;
    width: 42px;
}

.ai-landing-steps span {
    color: #172033;
    display: block;
    font-size: 1.48rem;
    font-weight: 800;
    line-height: 1.4;
}

.ai-landing-split {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
}

.ai-landing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ai-landing-tags span,
.ai-landing-related a {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 999px;
    color: #334155;
    font-size: 1.38rem;
    font-weight: 750;
    padding: 10px 14px;
}

.ai-landing-faq {
    display: grid;
    gap: 12px;
    margin: 0 auto;
    max-width: 880px;
}

.ai-landing-faq details {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    padding: 16px 18px;
}

.ai-landing-faq summary {
    color: #172033;
    cursor: pointer;
    font-size: 1.55rem;
    font-weight: 850;
}

.ai-landing-faq p {
    color: #64748b;
    font-size: 1.42rem;
    line-height: 1.6;
    margin: 12px 0 0;
}

.ai-landing-related {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.ai-landing-related a {
    text-decoration: none;
}

.ai-landing-related a:hover {
    background: #ecfdf5;
    color: #0f766e;
}

@media screen and (max-width: 992px) {
    .ai-landing-hero__grid,
    .ai-landing-split {
        grid-template-columns: 1fr;
    }

    .ai-landing-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ai-landing-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 576px) {
    .ai-landing-hero {
        padding: 32px 0;
    }

    .ai-landing-hero__grid {
        gap: 22px;
    }

    .ai-landing-feature-grid,
    .ai-landing-steps {
        grid-template-columns: 1fr;
    }

    .ai-landing-preview__image {
        min-height: 240px;
    }
}
