/* Scoped variables to avoid collisions */
html, body {
    margin: 0;
    padding: 0;
}

.landing-page {
    --lp-bg-1: #5d3aa7;
    --lp-bg-2: #5a3aa3;
    --lp-text: rgba(255, 255, 255, 0.92);
    --lp-text-muted: rgba(255, 255, 255, 0.72);
    --lp-card-border: rgba(255, 255, 255, 0.25);
    --lp-cta: #9cc4ea;
    --lp-cta-hover: #87b7e6;
    --lp-cta-text: #ffffff;
    --lp-focus: rgba(255, 255, 255, 0.8);

    /* Light section tokens */
    --lp-ink: #1b1b1f;
    --lp-ink-muted: rgba(27, 27, 31, 0.72);
    --lp-purple: #5b33a5;

    color: var(--lp-text);
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Base reset (lightweight, page-scoped) */
.landing-page *,
.landing-page *::before,
.landing-page *::after {
    box-sizing: border-box;
}

.landing-page {
    min-height: 100vh;
}

/* ========== HERO ========== */
.landing-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--lp-bg-1), var(--lp-bg-2));
    padding: clamp(28px, 4vw, 44px) 16px;
}

/* Decorative halftone-ish dot cluster (best-effort approximation) */
.landing-hero::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: min(620px, 70vw);
    height: min(620px, 70vw);
    opacity: 0.7;
    pointer-events: none;

    background-image: radial-gradient(
            circle,
            rgba(255, 255, 255, 0.45) 1.1px,
            transparent 1.2px
    );
    background-size: 10px 10px;

    -webkit-mask-image: radial-gradient(
            closest-side,
            rgba(0, 0, 0, 1) 58%,
            rgba(0, 0, 0, 0) 100%
    );
    mask-image: radial-gradient(
            closest-side,
            rgba(0, 0, 0, 1) 58%,
            rgba(0, 0, 0, 0) 100%
    );
}

.landing-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
            900px 420px at 18% 52%,
            rgba(255, 255, 255, 0.08),
            transparent 55%
    );
}

.landing-hero__container {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
}

.landing-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(22px, 4vw, 46px);
}

.landing-hero__left {
    display: grid;
    gap: 8px;
    align-content: start;
    min-width: 0;
    padding-top: 64px;
}

.landing-hero__logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 18px;
    width: fit-content;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.landing-hero__logo {
    display: block;
    height: 56px;
    width: auto;
    max-width: min(360px, 70vw);
}

.landing-hero__eyebrow {
    margin: 0;
    font-size: 1.8rem;
    color: white;
    letter-spacing: 0.2px;
}

.landing-hero__title-wrap {
    padding-top: 20px;
}

.landing-hero__title {
    margin: 0;
    padding: 0;
    font-size: clamp(32px, 3.8vw, 38px);
    font-weight: 750;
    background: linear-gradient(95deg, #d8dbdf, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-clip: text;
    min-width: 100%;
}

.landing-hero__title_mobile {
    display: none;
}

@media (max-width: 900px) {
    .landing-hero__title {
        display: none;
    }
    .landing-hero__title_mobile {
        display: block;
        font-size: clamp(34px, 3.8vw, 32px)
    }
}

.landing-hero__sub {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.2;
    color: var(--lp-text);
    letter-spacing: -0.01em;
    max-width: 600px;
    padding-top: 24px;

}

.landing-hero__right {
    display: grid;
    gap: 18px;
    justify-items: center;
    min-width: 0;
}

.landing-hero__video-frame {
    width: 100%;
    max-width: 640px;
    border-radius: 22px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--lp-card-border);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.landing-hero__video {
    border-radius: 16px;
    overflow: hidden;
    background: #0f0f12;
    aspect-ratio: 16 / 9;
}

.landing-hero__video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.landing-hero__cta-text {
    margin: 0;
    text-align: center;
    font-size: clamp(18px, 1.9vw, 26px);
    line-height: 1.25;
    color: var(--lp-text);
    max-width: 36ch;
}

.landing-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 12px 34px;
    border-radius: 18px;

    background: var(--lp-cta);
    color: var(--lp-cta-text);
    text-decoration: none;
    font-weight: 800;
    font-size: clamp(20px, 2.2vw, 34px);
    letter-spacing: 0.01em;

    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    transition: transform 140ms ease, background-color 140ms ease,
    box-shadow 140ms ease;
}

.landing-hero__cta:hover {
    background: var(--lp-cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.26);
}

.landing-hero__cta:active {
    transform: translateY(0);
}

.landing-hero__cta:focus-visible {
    outline: 3px solid var(--lp-focus);
    outline-offset: 3px;
}

/* ========== BENEFITS + TESTIMONIALS ========== */
.landing-benefits {
    background: #ffffff;
    color: var(--lp-ink);
    padding-bottom: 16px;
}

.landing-benefits__container {
    max-width: 1440px;
    margin: 0 auto;
}

.landing-benefits__title {
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: clamp(28px, 4.2vw, 54px);
    line-height: 1.05;

    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    color: var(--lp-purple);
    max-width: 600px;
    margin: 12px 0;
}

.landing-benefits__title-left {
    color: rgba(27, 27, 31, 0.25);
}

.landing-benefits__title-right {
    color: rgba(27, 27, 31, 0.25);
}

.landing-benefits__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
    padding-left: 20px;
}

.landing-benefits__features {
    padding-top: 10px;
    display: grid;
    gap: 32px;
}

.landing-benefits__feature-title {
    margin: 0;
    color: var(--lp-purple);
    font-size: clamp(20px, 2.4vw, 30px);
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -0.01em;
}

.landing-benefits__feature-text {
    margin: 4px 0 0 0;
    color: var(--lp-ink-muted);
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.3;
}

.landing-benefits__media {
    position: relative;
    width: 100%;
}

.landing-benefits__image {
    display: block;
    width: 100%;
    max-height: 950px;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

/* Testimonials block */
.landing-page .landing-testimonials {
    margin-top: clamp(26px, 4vw, 46px);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(22px, 3vw, 34px);
    padding: 0 24px;
}

.landing-page .landing-testimonials__item {
    margin: 0;
    display: flex;
    justify-items: center;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.landing-page .landing-testimonials__avatar {
    width: clamp(150px, 20vw, 220px);
    height: clamp(150px, 20vw, 220px);
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(27, 27, 31, 0.7); /* darker ring like screenshot */
}

.landing-page .landing-testimonials__avatar_3{
    object-position: left !important;
}

.landing-page .landing-testimonials__quote {
    margin: 18px 0 0 0;
    color: var(--lp-purple, #5b33a5);
    font-size: clamp(18px, 2.2vw, 18px);
    line-height: 1.45;
    max-width: 24ch;
    text-align: center;
}

.landing-testimonials__quote_2 {
    max-width: 36ch !important;
}

.landing-page .landing-testimonials__meta {
    margin-top: 14px;
    margin-inline: auto;
    color: rgba(27, 27, 31, 0.7);
    font-size: clamp(14px, 1.3vw, 18px);
    font-style: italic;
    line-height: 1.25;
    text-align: center;
}

.landing-page .landing-testimonials__meta-sub {
    display: inline-block;
    margin-top: 4px;
}

/* Desktop: two on top (left + right), one centered below */
@media (min-width: 900px) {
    .landing-page .landing-testimonials {
        grid-template-columns: 1fr 1fr;
        column-gap: clamp(42px, 6vw, 120px);
        row-gap: clamp(28px, 4vw, 56px);
        align-items: start;
    }

    .landing-page .landing-testimonials__item {
        flex-direction: row;
    }

    .landing-page .landing-testimonials__item--left {
        justify-items: start;
        text-align: left;
    }

    .landing-page .landing-testimonials__item--right {
        justify-items: end;
        text-align: right;
    }

    .landing-page .landing-testimonials__item--left .landing-testimonials__quote,
    .landing-page .landing-testimonials__item--right .landing-testimonials__quote {
        max-width: 36ch;
    }

    .landing-page .landing-testimonials__item--bottom {
        grid-column: 1 / -1;
        justify-self: center;
        justify-items: center;
        text-align: center;
        max-width: 980px;
    }
}

.landing-testimonials__quote {
    margin: 0;
    color: var(--lp-purple);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.5;
    max-width: 10px;
}

.landing-testimonials__meta {
    grid-column: 2;
    margin-top: 6px;
    color: rgba(27, 27, 31, 0.7);
    font-size: 14px;
    font-style: italic;
    line-height: 1.25;
}

.landing-testimonials__meta-sub {
    display: inline-block;
    margin-top: 2px;
}

/* Desktop layout */
@media (min-width: 900px) {
    .landing-hero {
        padding: clamp(34px, 4vw, 56px) 24px;
    }

    .landing-hero__grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: clamp(26px, 3vw, 54px);
    }

    .landing-hero__title {
        max-width: 20ch;
    }

    .landing-benefits__title-left {
        padding-right: 18px;
        color: rgba(27, 27, 31, 0.22);
    }

    /* On desktop, "Will Have" sits visually on top of the right image area */
    .landing-benefits__title-right {
        padding-left: 18px;
        color: rgba(255, 255, 255, 0.92);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
    }

    .landing-benefits__media {
        align-self: start;
    }

    .landing-testimonials {
        grid-template-columns: 1fr 1fr;
        column-gap: clamp(26px, 4vw, 56px);
        row-gap: clamp(18px, 2.8vw, 30px);
    }

    .landing-testimonials__item--bottom {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 760px;
    }
}

/* Ensure the right side title stays readable over the image on wide screens */
@media (min-width: 900px) {
    .landing-benefits__container {
        position: relative;
    }

    /* Add a subtle overlay at the very top of the right media to help contrast */
    .landing-benefits__media::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 96px;
        pointer-events: none;
        background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.18),
                rgba(0, 0, 0, 0)
        );
    }
}

/* Motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .landing-hero__cta {
        transition: none;
    }

    .landing-hero__cta:hover,
    .landing-hero__cta:active {
        transform: none;
    }
}

@media (max-width: 900px) {
    .landing-benefits__features {
        padding: 0 8px;
    }

    .landing-benefits__grid {
        padding: 0;
        grid-template-columns: 1fr;
    }
}

.landing-page .landing-pricing {
    background: linear-gradient(180deg, #5d3aa7, #4f2f92);
    color: rgba(255, 255, 255, 0.92);
    padding: clamp(28px, 4vw, 56px) 16px clamp(34px, 5vw, 70px);
}

.landing-page .landing-pricing__container {
    max-width: 1180px;
    margin: 0 auto;
}

.landing-page .landing-pricing__header {
    text-align: center;
    margin-bottom: clamp(18px, 3vw, 32px);
}

.landing-page .landing-pricing__title {
    margin: 0 0 8px 0;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: 0.08em;
    font-weight: 900;
}

.landing-page .landing-pricing__subtitle {
    margin: 0 auto;
    max-width: 60ch;
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.2;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.9);
}

/* Grid */
.landing-page .landing-pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
}

/* Card with gradient border */
.landing-page .landing-pricing__card {
    position: relative;
    border-radius: 16px;
    padding: 5px; /* border thickness */
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.65),
            rgba(255, 255, 255, 0.18)
    );
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
    margin-top: 20px;
}

.landing-page .landing-pricing__card-inner {
    height: 100%;
    z-index: 0;
    border-radius: 12px;
    background: #ffffff;
    color: #1b1b1f;
    padding: 22px 20px 20px;
}

/* Plan headings */
.landing-page .landing-pricing__plan {
    margin: 0 0 10px 0;
    text-align: center;
    color: #5b33a5;
    font-size: 30px;
    letter-spacing: 0.02em;
    font-weight: 900;
    z-index: 99;
}

.landing-page .landing-pricing__contact {
    margin: -4px 0 12px 0;
    text-align: center;
    color: rgba(27, 27, 31, 0.75);
    font-size: 18px;
    font-weight: 700;
}

.landing-page .landing-pricing__price-old {
    margin: 0 0 10px 0;
    text-align: center;
    color: rgba(27, 27, 31, 0.7);
    font-weight: 700;
}

.landing-page .landing-pricing__desc {
    margin: 0 auto 18px auto;
    text-align: center;
    max-width: 34ch;
    color: rgba(27, 27, 31, 0.72);
    line-height: 1.25;
}

/* Ultimate emphasis lines */
.landing-page .landing-pricing__emphasis {
    margin: 6px 0 0 0;
    text-align: center;
    color: rgba(27, 27, 31, 0.8);
    font-weight: 800;
}

/* Buttons */
.landing-page .landing-pricing__btn {
    display: block;
    width: min(260px, 100%);
    margin: 18px auto 18px;
    text-align: center;
    text-decoration: none;

    background: var(--lp-cta);
    color: #ffffff;

    padding: 12px 18px;
    border-radius: 14px;
    font-size: 26px;
    font-weight: 900;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
    transition: transform 140ms ease, box-shadow 140ms ease,
    background-color 140ms ease;
}

.landing-page .landing-pricing__btn:hover {
    background: var(--lp-cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.26);
}

.landing-page .landing-pricing__btn:active {
    transform: translateY(0);
}

.landing-page .landing-pricing__btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 4px;
}

/* Check list */
.landing-page .landing-pricing__list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: grid;
    gap: 14px;
}

.landing-page .landing-pricing__li {
    position: relative;
    padding-left: 34px;
    font-weight: 800;
    color: rgba(27, 27, 31, 0.78);
    letter-spacing: 0.01em;
}

.landing-page .landing-pricing__li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;
    font-size: 14px;
    color: #2a79c7;
    border: 1.5px solid rgba(42, 121, 199, 0.55);
    background: rgba(42, 121, 199, 0.06);
}

/* Featured (middle) card: wider + slightly taller */
@media (min-width: 900px) {
    .landing-page .landing-pricing__grid {
        grid-template-columns: 1fr 1.18fr 1fr;
        gap: 22px;
        align-items: stretch;
    }

    .landing-page .landing-pricing__card--featured {
        scale: 1.06;
    }
}

/* Ribbon (Ultimate) */
.landing-page .landing-pricing__ribbon {
    position: absolute;
    z-index: 0;
    top: 8px;
    right: -4px;
    transform: rotate(23deg);
    background: #39c51e;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.2);
}

.landing-page .landing-pricing__ribbon-text {
    display: block;
    text-align: center;
    color: #ffffff;
    font-weight: 1000;
    font-size: 22px;
    line-height: 1.02;
    letter-spacing: -0.02em;
}

/* Bottom CTA area */
.landing-page .landing-pricing__bottom {
    text-align: center;
    margin-top: clamp(26px, 4.2vw, 54px);
}

.landing-page .landing-pricing__question {
    margin: 0 0 10px 0;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 900;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

.landing-page .landing-pricing__pitch {
    margin: 0 auto;
    max-width: 60ch;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
}

.landing-page .landing-pricing__btn--bottom {
    margin-top: 18px;
    background: var(--lp-cta); /* teal like screenshot */
}

.landing-page .landing-pricing__btn--bottom:hover {
    background: var(--lp-cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.26);
}

/* Mobile: keep order FREE -> ULTIMATE -> ENTERPRISE (already DOM order) */
@media (prefers-reduced-motion: reduce) {
    .landing-page .landing-pricing__btn {
        transition: none;
    }

    .landing-page .landing-pricing__btn:hover,
    .landing-page .landing-pricing__btn:active {
        transform: none;
    }

    @media (min-width: 900px) {
        .landing-page .landing-pricing__card--featured {
            transform: none;
        }
    }
}

.spacer {
    height: 28px;
}

.spacer2 {
    height: 20px;
}