.aurora-landing-body {
    background: linear-gradient(160deg, #f0f9ff 0%, #fff7ed 55%, #ffffff 100%);
    min-height: 100vh;
    font-family: 'Cairo', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* Scroll-reveal animation (JS adds .reveal--visible via IntersectionObserver) */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.saas-landing__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 1.25rem 2rem;
}

.saas-landing__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    font-size: 1.15rem;
}

.saas-landing__logo {
    width: 2rem;
    height: 2rem;
}

.saas-landing__hero {
    max-width: 1080px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
    text-align: center;
}

.saas-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 2rem;
    text-align: start;
}

.saas-hero__content h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0f172a;
}

.saas-hero__content p {
    font-size: 1.12rem;
    color: #475569;
    margin: 0 0 1.75rem;
}

.saas-hero__content .saas-landing__actions {
    justify-content: flex-start;
}

.saas-hero__media img {
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
    border: 1px solid #e2e8f0;
}

@media (max-width: 992px) {
    .saas-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .saas-hero__content .saas-landing__actions {
        justify-content: center;
    }

    .saas-hero__media {
        order: -1;
        max-width: 540px;
        margin: 0 auto;
    }
}

.saas-landing__hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0f172a;
}

.saas-landing__hero p {
    font-size: 1.15rem;
    color: #475569;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.saas-login-card {
    margin: 1.25rem auto 0;
    max-width: 760px;
    text-align: start;
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 1rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    padding: 1rem;
}

.saas-login-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.saas-login-card p {
    margin: 0 0 0.75rem;
    color: #64748b;
    font-size: 0.95rem;
}

.saas-login-card__prefix {
    direction: ltr;
    font-size: 0.85rem;
    color: #64748b;
}

.saas-landing__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.saas-landing__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.saas-landing__feature {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.saas-landing__feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.saas-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.85rem;
}

.saas-feature__icon--sky { background: linear-gradient(135deg, #0ea5e9, #0369a1); }
.saas-feature__icon--orange { background: linear-gradient(135deg, #fb923c, #ea580c); }
.saas-feature__icon--green { background: linear-gradient(135deg, #34d399, #059669); }

.saas-landing__feature h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.saas-landing__feature p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

.saas-signup {
    display: flex;
    justify-content: center;
    padding: 1rem 1.5rem 4rem;
}

.saas-signup__card {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.saas-signup__card h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.saas-signup__subtitle {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.saas-signup__prefix {
    font-size: 0.85rem;
    color: #64748b;
    direction: ltr;
}

.saas-signup__submit {
    font-weight: 700;
    padding: 0.75rem 1rem;
}

.saas-screenshot {
    max-width: 1080px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

.saas-screenshot__intro {
    text-align: center;
    margin-bottom: 1.5rem;
}

.saas-screenshot__intro h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.saas-screenshot__intro p {
    color: #64748b;
    margin: 0;
}

.saas-screenshot__frame {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
}

.saas-screenshot__bar {
    display: flex;
    gap: 0.4rem;
    padding: 0.6rem 0.9rem;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.saas-screenshot__bar span {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: #cbd5e1;
}

.saas-screenshot__frame img {
    display: block;
    width: 100%;
    height: auto;
}

.saas-carousel {
    position: relative;
    background: #f8fafc;
}

.saas-carousel__viewport {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f8fafc;
}

.saas-carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.saas-carousel__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.saas-carousel__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.saas-carousel__slide picture,
.saas-carousel__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: unset;
    object-position: top center;
}

.saas-carousel__caption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    margin: 0;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid #e2e8f0;
}

.saas-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.saas-carousel__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.saas-carousel__arrow:hover,
.saas-carousel__arrow:focus-visible {
    background: #f1f5f9;
    border-color: #94a3b8;
    outline: none;
}

.saas-carousel__dots {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.saas-carousel__dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
    transition: width 0.2s ease, background-color 0.2s ease;
}

.saas-carousel__dot.is-active {
    width: 1.35rem;
    background: #0ea5e9;
}

.saas-carousel__dot:focus-visible {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

[dir="rtl"] .saas-carousel__arrow--prev .bi-chevron-left::before {
    content: "\f285";
}

[dir="rtl"] .saas-carousel__arrow--next .bi-chevron-right::before {
    content: "\f284";
}

@media (prefers-reduced-motion: reduce) {
    .saas-carousel__slide {
        transition: none;
    }
}

@media (max-width: 576px) {
    .saas-carousel__caption {
        font-size: 0.82rem;
        padding: 0.6rem 0.75rem;
    }

    .saas-carousel__controls {
        gap: 0.5rem;
        padding: 0.7rem 0.75rem;
    }
}

.saas-final-cta {
    max-width: 820px;
    margin: 0 auto 4rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);
    border-radius: 1.25rem;
    color: #fff;
    box-shadow: 0 20px 44px rgba(14, 165, 233, 0.35);
}

.saas-final-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.saas-final-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem;
}

.saas-final-cta .btn {
    background: #ffffff;
    color: #0369a1;
    border-color: #ffffff;
    font-weight: 700;
}

.saas-final-cta .btn:hover {
    background: #f1f5f9;
    color: #0369a1;
}

.saas-footer {
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
    padding: 1.75rem 1.5rem;
}

.saas-footer__inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.saas-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #0f172a;
}

.saas-footer__brand img {
    width: 1.6rem;
    height: 1.6rem;
}

.saas-footer__links {
    display: inline-flex;
    gap: 1.25rem;
}

.saas-footer__links a {
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
}

.saas-footer__links a:hover {
    color: #0284c7;
}

.saas-footer__copy {
    color: #94a3b8;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .saas-footer__inner {
        flex-direction: column;
        text-align: center;
    }
}

.saas-pricing {
    max-width: 1080px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

.saas-pricing__intro {
    text-align: center;
    margin-bottom: 1.5rem;
}

.saas-pricing__intro h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.saas-pricing__intro p {
    color: #64748b;
    margin: 0;
}

.saas-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.saas-pricing__card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    position: relative;
}

.saas-pricing__card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.saas-pricing__price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0ea5e9;
    margin-bottom: 0.5rem;
}

.saas-pricing__desc {
    color: #64748b;
    min-height: 2.6rem;
}

.saas-pricing__card ul {
    margin: 0 0 1rem;
    padding-inline-start: 1.1rem;
    color: #334155;
}

.saas-pricing__card li {
    margin-bottom: 0.45rem;
}

.saas-pricing__card--popular {
    border-color: #0ea5e9;
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.18);
}

.saas-pricing__badge {
    position: absolute;
    top: -0.65rem;
    inset-inline-end: 1rem;
    background: #0ea5e9;
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .saas-landing__header {
        padding: 1rem;
        align-items: stretch;
    }

    .saas-landing__brand {
        width: 100%;
        justify-content: center;
        font-size: 1.05rem;
    }

    .saas-landing__hero {
        padding-top: 2rem;
    }

    .saas-landing__actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .saas-landing__actions .btn {
        width: 100%;
        padding: 0.65rem 0.5rem;
        font-size: 1rem;
    }

    .saas-login-card {
        padding: 0.85rem;
    }

    .saas-login-card .input-group {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .saas-login-card .input-group > .form-control,
    .saas-login-card .input-group > .btn,
    .saas-login-card .input-group > .input-group-text {
        border-radius: 0.6rem !important;
        width: 100%;
    }
}
