.lml-page {
    --lml-pink: #ef017f;
    --lml-blue: #0085de;
    --lml-green: #88c701;
    --lml-yellow: #f5b900;
    --lml-ink: #10182b;
    --lml-navy: #061532;
    --lml-muted: #626c7a;
    --lml-line: #e5edf5;
    --lml-soft: #f7fbff;
    --lml-cta: #2563eb;
    --lml-cta-hover: #1d4ed8;
    overflow: hidden;
    color: var(--lml-ink);
    background: #fff;
    font-family: "Google Sans Flex", system-ui, sans-serif;
}

.lml-page *,
.lml-page *::before,
.lml-page *::after {
    box-sizing: border-box;
}

.lml-page a {
    text-decoration: none;
}

.lml-page img {
    max-width: 100%;
}

.lml-page h1,
.lml-page h2,
.lml-page h3,
.lml-page p {
    overflow-wrap: break-word;
}

.lml-picture {
    display: block;
    width: 100%;
}

.lml-picture img {
    display: block;
    width: 100%;
    height: auto;
}

.lml-eyebrow {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
    margin: 0 0 14px;
    color: var(--lml-pink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.lml-eyebrow i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 1.1em;
    color: inherit;
    font-size: 12px;
}

.lml-highlight {
    background:
        linear-gradient(100deg, transparent 0 11%, rgba(255, 255, 255, .34) 11% 15%, transparent 15% 100%),
        linear-gradient(75deg, transparent 0 32%, rgba(255, 255, 255, .3) 32% 36%, transparent 36% 100%),
        linear-gradient(105deg, transparent 0 56%, rgba(255, 255, 255, .28) 56% 60%, transparent 60% 100%),
        linear-gradient(80deg, transparent 0 80%, rgba(255, 255, 255, .32) 80% 84%, transparent 84% 100%),
        var(--lml-highlight-color);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--lml-highlight-color);
    -webkit-text-fill-color: transparent;
}

.lml-highlight--pink {
    --lml-highlight-color: var(--lml-pink);
}

.lml-highlight--blue {
    --lml-highlight-color: var(--lml-blue);
}

.lml-highlight--green {
    --lml-highlight-color: var(--lml-green);
}

.lml-lead,
.lml-section-copy {
    color: var(--lml-muted);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.72;
}

.lml-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.lml-button,
.lml-button:link,
.lml-button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    border: 2px solid transparent;
    border-radius: 999px;
    padding: 12px 23px;
    color: #fff;
    background: var(--lml-cta);
    box-shadow: 0 12px 27px rgba(37, 99, 235, .21);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.lml-button:hover {
    color: #fff;
    background: var(--lml-cta-hover);
    box-shadow: 0 16px 32px rgba(37, 99, 235, .28);
    transform: translateY(-2px);
}

.lml-button--link,
.lml-button--link:link,
.lml-button--link:visited {
    border-color: transparent;
    padding-right: 8px;
    padding-left: 8px;
    color: #17213d;
    background: transparent;
    box-shadow: none;
}

.lml-button--link:hover {
    color: var(--lml-blue);
    background: transparent;
    box-shadow: none;
}

.lml-button--outline,
.lml-button--outline:link,
.lml-button--outline:visited {
    border-color: #cdd9e8;
    color: #17213d;
    background: #fff;
    box-shadow: none;
}

.lml-button--outline:hover {
    border-color: var(--lml-cta);
    color: var(--lml-cta);
    background: #f5f9ff;
}

.lml-page a:focus-visible,
.lml-page summary:focus-visible {
    outline: 3px solid rgba(0, 133, 222, .32);
    outline-offset: 4px;
}

.lml-hero {
    position: relative;
    isolation: isolate;
    padding: 68px 0 58px;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
    background:
        radial-gradient(circle at 72% 16%, rgba(0, 133, 222, .055), transparent 26%),
        radial-gradient(circle at 88% 78%, rgba(239, 1, 127, .05), transparent 24%),
        #fbfdff;
}

.lml-hero::before,
.lml-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 30px;
    height: 730px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    pointer-events: none;
}

.lml-hero::before {
    left: max(12px, calc((100% - 1320px) / 2 - 142px));
    width: 118px;
    background-image: url("../img/shapes_left.png");
}

.lml-hero::after {
    right: max(12px, calc((100% - 1320px) / 2 - 164px));
    width: 140px;
    background-image: url("../img/shapes_right.png");
}

.lml-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
    gap: 52px;
    align-items: center;
}

.lml-hero__copy {
    position: relative;
    z-index: 2;
}

.lml-hero h1 {
    max-width: 720px;
    margin: 0 0 20px;
    color: #0b1020;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(60px, 7.2vw, 88px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: .91;
}

.lml-hero .lml-lead {
    max-width: 680px;
    margin: 0 0 26px;
    font-size: 18px;
}

.lml-hero__notes {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin-top: 22px;
    color: #536174;
    font-size: 12px;
    font-weight: 700;
}

.lml-hero__notes span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.lml-hero__notes i {
    color: var(--lml-green);
}

.lml-hero__visual {
    position: relative;
    z-index: 1;
    padding: 9px;
    border: 1px solid rgba(219, 228, 239, .9);
    border-radius: 34px;
    background: rgba(255, 255, 255, .92);
    box-shadow:
        0 30px 72px rgba(15, 23, 42, .13),
        0 8px 22px rgba(15, 23, 42, .05);
    transform: rotate(.65deg);
}

.lml-hero__visual::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 9% -4% -6% 6%;
    border-radius: 46% 54% 47% 53% / 54% 42% 58% 46%;
    background: linear-gradient(145deg, rgba(255, 224, 69, .58), rgba(255, 173, 211, .42) 45%, rgba(130, 216, 255, .46));
    transform: rotate(-4deg);
}

.lml-hero__visual img {
    aspect-ratio: 3 / 2;
    border-radius: 25px;
    object-fit: cover;
}

.lml-float-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    border: 1px solid rgba(229, 237, 245, .95);
    border-radius: 999px;
    padding: 9px 14px;
    color: #273449;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .14);
    backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 850;
    line-height: 1.25;
}

.lml-float-badge i {
    color: var(--lml-pink);
}

.lml-float-badge--top {
    top: 24px;
    right: -18px;
}

.lml-float-badge--bottom {
    bottom: 25px;
    left: -22px;
}

.lml-float-badge--bottom i {
    color: var(--lml-blue);
}

.lml-assurance {
    position: relative;
    z-index: 3;
    border-bottom: 1px solid var(--lml-line);
    background: #fff;
}

.lml-assurance__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lml-assurance__grid > div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 22px 18px;
    border-right: 1px solid var(--lml-line);
}

.lml-assurance__grid > div:last-child {
    border-right: 0;
}

.lml-assurance__grid > div > i {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--lml-pink);
    background: #ffe9f4;
    place-items: center;
}

.lml-assurance__grid > div:nth-child(2) > i {
    color: var(--lml-blue);
    background: #e8f5ff;
}

.lml-assurance__grid > div:nth-child(3) > i {
    color: #67a000;
    background: #edf8d7;
}

.lml-assurance__grid > div:nth-child(4) > i {
    color: #ae7d00;
    background: #fff5cc;
}

.lml-assurance__grid span,
.lml-assurance__grid strong,
.lml-assurance__grid small {
    display: block;
}

.lml-assurance__grid strong {
    color: #17213d;
    font-size: 13px;
    line-height: 1.3;
}

.lml-assurance__grid small {
    margin-top: 2px;
    color: #7b8797;
    font-size: 10px;
    line-height: 1.35;
}

.lml-section {
    padding: 86px 0;
}

.lml-heading {
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
}

.lml-heading--left {
    max-width: 780px;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.lml-heading .lml-eyebrow {
    justify-content: center;
}

.lml-heading--left .lml-eyebrow {
    justify-content: flex-start;
}

.lml-heading h2,
.lml-story h2,
.lml-themes h2,
.lml-moments h2,
.lml-qr h2,
.lml-privacy h2,
.lml-offer h2,
.lml-faq h2 {
    margin: 0;
    color: #07112c;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(50px, 6.2vw, 68px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: .93;
}

.lml-heading > p:last-child {
    max-width: 700px;
    margin: 17px auto 0;
    color: var(--lml-muted);
    font-size: 16px;
    line-height: 1.65;
}

.lml-story {
    background: #fff;
}

.lml-story__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .65fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 36px;
}

.lml-story__intro > p {
    margin: 0 0 4px;
    color: var(--lml-muted);
    font-size: 17px;
    line-height: 1.72;
}

.lml-story__grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.lml-story-card {
    position: relative;
    min-height: 292px;
    overflow: hidden;
    border: 1px solid var(--lml-line);
    border-radius: 26px;
    padding: 26px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(15, 23, 42, .055);
    transition: box-shadow .2s ease, transform .2s ease;
}

.lml-story-card:hover {
    box-shadow: 0 21px 48px rgba(15, 23, 42, .09);
    transform: translateY(-3px);
}

.lml-story-card--feature {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    background:
        radial-gradient(circle at 90% 8%, rgba(255, 255, 255, .16), transparent 28%),
        linear-gradient(145deg, #d90073, var(--lml-pink));
}

.lml-story-card--feature::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -54px;
    width: 180px;
    height: 180px;
    border: 24px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.lml-story-card__icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 52px;
    border-radius: 19px;
    color: var(--lml-pink);
    background: #ffe9f4;
    font-size: 22px;
    place-items: center;
}

.lml-story-card--feature .lml-story-card__icon {
    color: var(--lml-pink);
    background: #fff;
}

.lml-story-card__icon--blue {
    color: var(--lml-blue);
    background: #e7f5ff;
}

.lml-story-card__icon--green {
    color: #609400;
    background: #edf8d7;
}

.lml-story-card__icon--yellow {
    color: #a97900;
    background: #fff5cc;
}

.lml-card-label {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.lml-story-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: #17213d;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 850;
    line-height: 1.18;
}

.lml-story-card--feature h3 {
    max-width: 390px;
    color: #fff;
    font-size: 26px;
}

.lml-story-card p:last-child {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #69768a;
    font-size: 13px;
    line-height: 1.65;
}

.lml-story-card--feature p:last-child {
    max-width: 430px;
    color: rgba(255, 255, 255, .82);
}

.lml-themes {
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
    background: var(--lml-soft);
}

.lml-themes__grid {
    display: grid;
    grid-template-columns: minmax(440px, 1.05fr) minmax(0, .95fr);
    gap: 64px;
    align-items: center;
}

.lml-themes__visual {
    position: relative;
    padding: 10px;
    border: 1px solid #dfe9f3;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 24px 62px rgba(15, 23, 42, .1);
    transform: rotate(-.7deg);
}

.lml-themes__visual img {
    aspect-ratio: 3 / 2;
    border-radius: 23px;
    object-fit: cover;
}

.lml-themes__visual-note {
    position: absolute;
    right: -20px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 43px;
    border-radius: 999px;
    padding: 10px 15px;
    color: #17213d;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 13px 30px rgba(15, 23, 42, .16);
    font-size: 11px;
    font-weight: 850;
}

.lml-themes__visual-note i {
    color: var(--lml-pink);
}

.lml-themes__copy .lml-section-copy {
    max-width: 620px;
    margin: 20px 0 24px;
}

.lml-theme-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.lml-theme-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 45px;
    border: 1px solid #e1e9f2;
    border-radius: 14px;
    padding: 8px 12px;
    color: #39465a;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
}

.lml-theme-chip i {
    display: grid;
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    border-radius: 9px;
    color: var(--lml-pink);
    background: #ffe9f4;
    font-size: 11px;
    place-items: center;
}

.lml-theme-chip:nth-child(3n + 2) i {
    color: var(--lml-blue);
    background: #e7f5ff;
}

.lml-theme-chip:nth-child(3n) i {
    color: #5f9200;
    background: #edf8d7;
}

.lml-themes__note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 17px 0 0;
    color: #718095;
    font-size: 11px;
    line-height: 1.5;
}

.lml-themes__note i {
    margin-top: 2px;
    color: var(--lml-blue);
}

.lml-kit {
    background: #fff;
}

.lml-kit__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 15px;
}

.lml-kit-card {
    position: relative;
    grid-column: span 3;
    min-height: 242px;
    overflow: hidden;
    border: 1px solid var(--lml-line);
    border-radius: 25px;
    padding: 25px;
    background: #fff;
}

.lml-kit-card--wide {
    grid-column: span 6;
}

.lml-kit-card--wide {
    display: flex;
    align-items: center;
    gap: 22px;
}

.lml-kit-card--pink {
    color: #fff;
    background: var(--lml-pink);
}

.lml-kit-card--blue {
    border-color: #cfeaff;
    background: #f1f9ff;
}

.lml-kit-card--green {
    border-color: #d9edb8;
    background: #f6fbe9;
}

.lml-kit-card--yellow {
    border-color: #f4e0a0;
    background: #fff9df;
}

.lml-kit-card--ink {
    color: #fff;
    background: var(--lml-navy);
}

.lml-kit-card--soft {
    border-color: #dfe8f2;
    background:
        radial-gradient(circle at 92% 15%, rgba(0, 133, 222, .1), transparent 28%),
        #f7fbff;
}

.lml-kit-card__icon {
    display: grid;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    margin-bottom: 48px;
    border-radius: 18px;
    color: var(--lml-pink);
    background: #ffe9f4;
    font-size: 20px;
    place-items: center;
}

.lml-kit-card--wide .lml-kit-card__icon {
    margin-bottom: 0;
}

.lml-kit-card--pink .lml-kit-card__icon,
.lml-kit-card--ink .lml-kit-card__icon {
    color: var(--lml-pink);
    background: #fff;
}

.lml-kit-card--blue .lml-kit-card__icon {
    color: var(--lml-blue);
    background: #fff;
}

.lml-kit-card--green .lml-kit-card__icon {
    color: #609400;
    background: #fff;
}

.lml-kit-card--yellow .lml-kit-card__icon {
    color: #aa7900;
    background: #fff;
}

.lml-kit-card h3 {
    margin: 0 0 8px;
    color: #17213d;
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 850;
    line-height: 1.2;
}

.lml-kit-card--pink h3,
.lml-kit-card--ink h3 {
    color: #fff;
}

.lml-kit-card p {
    margin: 0;
    color: #647287;
    font-size: 13px;
    line-height: 1.62;
}

.lml-kit-card--pink p,
.lml-kit-card--ink p {
    color: rgba(255, 255, 255, .78);
}

.lml-kit-card--pink > strong {
    position: absolute;
    right: 20px;
    bottom: -13px;
    color: rgba(255, 255, 255, .16);
    font-family: "Bebas Neue", sans-serif;
    font-size: 86px;
    font-weight: 600;
    line-height: 1;
}

.lml-kit-card__arrow {
    margin-left: auto;
    color: var(--lml-blue);
    font-size: 28px;
}

.lml-process {
    border-top: 1px solid #e9f0f7;
    border-bottom: 1px solid #e9f0f7;
    background: var(--lml-soft);
}

.lml-process__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lml-process__steps li {
    position: relative;
    min-height: 265px;
    border: 1px solid var(--lml-line);
    border-radius: 24px;
    padding: 28px 24px 24px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .045);
}

.lml-process__number {
    position: absolute;
    top: 16px;
    right: 20px;
    color: #e5ebf2;
    font-family: "Bebas Neue", sans-serif;
    font-size: 45px;
    line-height: 1;
}

.lml-process__steps li > i {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 43px;
    border-radius: 19px;
    color: var(--lml-pink);
    background: #ffe9f4;
    font-size: 21px;
    place-items: center;
}

.lml-process__steps li:nth-child(2) > i {
    color: var(--lml-blue);
    background: #e7f5ff;
}

.lml-process__steps li:nth-child(3) > i {
    color: #619500;
    background: #edf8d7;
}

.lml-process__steps li:nth-child(4) > i {
    color: #aa7900;
    background: #fff5cc;
}

.lml-process__steps h3 {
    margin: 0 0 8px;
    color: #17213d;
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 850;
}

.lml-process__steps p {
    margin: 0;
    color: #6b788c;
    font-size: 13px;
    line-height: 1.6;
}

.lml-moments {
    background: #fff;
}

.lml-moments__grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
    gap: 70px;
    align-items: center;
}

.lml-moments__copy .lml-section-copy {
    max-width: 620px;
    margin: 20px 0 25px;
}

.lml-moments__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.lml-moments__list article {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    min-height: 123px;
    border: 1px solid var(--lml-line);
    border-radius: 20px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .045);
}

.lml-moments__list article > i {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--lml-pink);
    background: #ffe9f4;
    place-items: center;
}

.lml-moments__list article:nth-child(3n + 2) > i {
    color: var(--lml-blue);
    background: #e7f5ff;
}

.lml-moments__list article:nth-child(3n) > i {
    color: #609400;
    background: #edf8d7;
}

.lml-moments__list span,
.lml-moments__list strong {
    display: block;
}

.lml-moments__list span {
    color: #718095;
    font-size: 11px;
    line-height: 1.5;
}

.lml-moments__list strong {
    margin-bottom: 3px;
    color: #17213d;
    font-size: 13px;
}

.lml-qr {
    border-top: 1px solid #f0e5ec;
    border-bottom: 1px solid #e6edf5;
    background:
        radial-gradient(circle at 16% 75%, rgba(239, 1, 127, .06), transparent 25%),
        linear-gradient(135deg, #fff 0%, #fff6fa 48%, #eff8ff 100%);
}

.lml-qr__grid {
    display: grid;
    grid-template-columns: minmax(440px, 1.05fr) minmax(0, .95fr);
    gap: 66px;
    align-items: center;
}

.lml-qr__visual {
    position: relative;
    padding: 9px;
    border: 1px solid #e4eaf1;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 25px 65px rgba(30, 41, 59, .12);
    transform: rotate(.65deg);
}

.lml-qr__visual::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 13% -4% -7% 7%;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffd9ea, #cbeaff);
}

.lml-qr__visual img {
    aspect-ratio: 3 / 2;
    border-radius: 23px;
    object-fit: cover;
}

.lml-qr__copy .lml-section-copy {
    margin: 20px 0 23px;
}

.lml-qr__uses {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.lml-qr__uses span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    border: 1px solid #e0e8f0;
    border-radius: 999px;
    padding: 8px 12px;
    color: #4e5c70;
    background: rgba(255, 255, 255, .84);
    font-size: 11px;
    font-weight: 800;
}

.lml-qr__uses i {
    color: var(--lml-pink);
}

.lml-privacy {
    padding: 64px 0;
    color: #fff;
    background:
        radial-gradient(circle at 5% 15%, rgba(0, 133, 222, .17), transparent 22%),
        var(--lml-navy);
}

.lml-privacy__grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(500px, 1.2fr);
    gap: 64px;
    align-items: center;
}

.lml-privacy .lml-eyebrow {
    color: #6cc7ff;
}

.lml-privacy h2 {
    color: #fff;
}

.lml-privacy__grid > div:first-child > p:last-child {
    max-width: 610px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    line-height: 1.68;
}

.lml-privacy__options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 11px;
}

.lml-privacy__options span {
    display: flex;
    flex-direction: column;
    min-height: 142px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, .065);
}

.lml-privacy__options i {
    margin-bottom: 29px;
    color: var(--lml-pink);
    font-size: 21px;
}

.lml-privacy__options span:nth-child(2) i {
    color: #58baf5;
}

.lml-privacy__options span:nth-child(3) i {
    color: #a4d842;
}

.lml-privacy__options strong {
    color: #fff;
    font-size: 13px;
}

.lml-privacy__options small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .56);
    font-size: 10px;
}

.lml-offer {
    position: relative;
    overflow: hidden;
    padding: 82px 0;
    border-top: 8px solid var(--lml-pink);
    color: #fff;
    background: #07122c;
}

.lml-offer::before,
.lml-offer::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.lml-offer::before {
    top: -280px;
    right: -180px;
    width: 600px;
    height: 600px;
    border: 90px solid rgba(37, 99, 235, .1);
}

.lml-offer::after {
    bottom: -250px;
    left: -220px;
    width: 520px;
    height: 520px;
    background: rgba(239, 1, 127, .07);
}

.lml-offer .container {
    position: relative;
    z-index: 1;
}

.lml-offer__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .75fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 34px;
}

.lml-offer .lml-eyebrow {
    color: #fff;
}

.lml-offer .lml-eyebrow i {
    color: var(--lml-pink);
}

.lml-offer h2 {
    max-width: 760px;
    color: #fff;
}

.lml-offer__intro > div:last-child > p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .69);
    font-size: 14px;
    line-height: 1.68;
}

.lml-offer__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lml-offer__chips span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .055);
    font-size: 10px;
    font-weight: 750;
}

.lml-offer__chips i {
    color: #69c5ff;
}

.lml-plans {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 1050px;
    margin: 0 auto;
}

.lml-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 29px;
    padding: 31px;
    color: #17213d;
    background: #fff;
    box-shadow: 0 24px 62px rgba(0, 0, 0, .16);
}

.lml-plan--featured {
    border: 3px solid var(--lml-cta);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, .2),
        0 0 58px rgba(37, 99, 235, .45);
}

.lml-plan__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    min-height: 28px;
    border-radius: 999px;
    padding: 6px 13px;
    color: #fff;
    background: var(--lml-cta);
    box-shadow: 0 7px 18px rgba(37, 99, 235, .28);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
}

.lml-plan__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.lml-plan__name {
    margin: 0 0 7px;
    color: #17213d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.lml-plan__fit {
    max-width: 340px;
    margin: 0;
    color: #6d798c;
    font-size: 12px;
    line-height: 1.5;
}

.lml-plan__icon {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    color: var(--lml-pink);
    background: #ffe9f4;
    place-items: center;
}

.lml-plan--featured .lml-plan__icon {
    color: var(--lml-cta);
    background: #eaf2ff;
}

.lml-plan__price {
    margin-top: 25px;
    color: #07112c;
    font-family: "Bebas Neue", sans-serif;
    font-size: 62px;
    font-weight: 600;
    line-height: .9;
}

.lml-plan__payment {
    margin: 5px 0 0;
    color: #8993a2;
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
}

.lml-plan ul {
    display: grid;
    gap: 10px;
    margin: 25px 0 28px;
    padding: 23px 0 0;
    border-top: 1px solid #e7edf4;
    list-style: none;
}

.lml-plan li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #344156;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.lml-plan li i {
    display: grid;
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    margin-top: -1px;
    border-radius: 50%;
    color: #fff;
    background: var(--lml-green);
    font-size: 9px;
    place-items: center;
}

.lml-plan .lml-button {
    width: 100%;
    margin-top: auto;
}

.lml-offer__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 23px 0 0;
    color: rgba(255, 255, 255, .6);
    font-size: 11px;
    text-align: center;
}

.lml-offer__note i {
    color: var(--lml-green);
}

.lml-faq {
    background: #fbfdff;
}

.lml-faq__grid {
    display: grid;
    grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
    gap: 72px;
    align-items: start;
}

.lml-faq__intro {
    position: sticky;
    top: 105px;
}

.lml-faq__intro > p:nth-of-type(2) {
    max-width: 480px;
    margin: 17px 0 24px;
    color: var(--lml-muted);
    font-size: 15px;
    line-height: 1.65;
}

.lml-faq__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.lml-faq__trust {
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: 460px;
    margin-top: 24px;
    border: 1px solid var(--lml-line);
    border-radius: 18px;
    padding: 15px;
    background: #fff;
}

.lml-faq__trust > i {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #fff;
    background: var(--lml-navy);
    place-items: center;
}

.lml-faq__trust span,
.lml-faq__trust strong {
    display: block;
}

.lml-faq__trust span {
    color: #7b8797;
    font-size: 10px;
    line-height: 1.5;
}

.lml-faq__trust strong {
    margin-bottom: 2px;
    color: #17213d;
    font-size: 12px;
}

.lml-faq__list {
    border-top: 1px solid var(--lml-line);
}

.lml-faq details {
    border-bottom: 1px solid var(--lml-line);
}

.lml-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 70px;
    padding: 18px 2px;
    color: #17213d;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.lml-faq summary::-webkit-details-marker {
    display: none;
}

.lml-faq summary > span {
    position: relative;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffe9f4;
}

.lml-faq summary > span::before,
.lml-faq summary > span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    border-radius: 2px;
    background: var(--lml-pink);
    transform: translate(-50%, -50%);
}

.lml-faq summary > span::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .2s ease;
}

.lml-faq details[open] summary > span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.lml-faq details > div {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .22s ease;
}

.lml-faq details[open] > div {
    grid-template-rows: 1fr;
}

.lml-faq details > div > p {
    overflow: hidden;
    margin: 0;
    padding: 0 45px 0 2px;
    color: #667489;
    font-size: 13px;
    line-height: 1.72;
}

.lml-faq details[open] > div > p {
    padding-bottom: 20px;
}

.lml-closing {
    border-top: 1px solid #edf2f7;
    padding: 28px 0;
    background: #fff;
}

.lml-closing .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.lml-closing i {
    color: var(--lml-pink);
}

.lml-closing p {
    margin: 0;
    color: #59677a;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .07em;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 1390px) {
    .lml-hero::before,
    .lml-hero::after {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .lml-hero__grid {
        grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr);
        gap: 36px;
    }

    .lml-story__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lml-story-card--feature {
        grid-column: 1 / -1;
        min-height: 260px;
    }

    .lml-story-card__icon {
        margin-bottom: 38px;
    }

    .lml-kit-card {
        grid-column: span 4;
    }

    .lml-kit-card--wide {
        grid-column: span 6;
    }

    .lml-kit-card--soft {
        grid-column: span 6;
    }
}

@media (max-width: 991.98px) {
    .lml-hero {
        padding: 54px 0 64px;
    }

    .lml-hero__grid,
    .lml-story__intro,
    .lml-themes__grid,
    .lml-moments__grid,
    .lml-qr__grid,
    .lml-privacy__grid,
    .lml-offer__intro,
    .lml-faq__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .lml-hero__grid {
        gap: 42px;
    }

    .lml-hero__copy {
        max-width: 760px;
    }

    .lml-hero__visual {
        width: min(760px, 100%);
        margin: 0 auto;
    }

    .lml-assurance__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lml-assurance__grid > div:nth-child(2) {
        border-right: 0;
    }

    .lml-assurance__grid > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--lml-line);
    }

    .lml-story__intro {
        gap: 20px;
    }

    .lml-story__intro > p {
        max-width: 720px;
    }

    .lml-themes__grid,
    .lml-qr__grid {
        gap: 45px;
    }

    .lml-themes__visual,
    .lml-qr__visual {
        width: min(760px, 100%);
        margin: 0 auto;
    }

    .lml-themes__visual {
        order: 2;
    }

    .lml-kit-card,
    .lml-kit-card--wide,
    .lml-kit-card--soft {
        grid-column: span 6;
    }

    .lml-process__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lml-moments__grid,
    .lml-privacy__grid,
    .lml-offer__intro,
    .lml-faq__grid {
        gap: 40px;
    }

    .lml-moments__copy {
        max-width: 760px;
    }

    .lml-privacy__options {
        max-width: 760px;
    }

    .lml-offer__intro {
        align-items: start;
    }

    .lml-faq__intro {
        position: static;
        max-width: 720px;
    }
}

@media (max-width: 767.98px) {
    .lml-section {
        padding: 66px 0;
    }

    .lml-hero h1 {
        font-size: clamp(57px, 13vw, 76px);
    }

    .lml-heading h2,
    .lml-story h2,
    .lml-themes h2,
    .lml-moments h2,
    .lml-qr h2,
    .lml-privacy h2,
    .lml-offer h2,
    .lml-faq h2 {
        font-size: clamp(47px, 11vw, 61px);
    }

    .lml-story__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .lml-story-card--feature {
        grid-column: auto;
    }

    .lml-story-card {
        min-height: 240px;
    }

    .lml-theme-chips {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lml-kit-card,
    .lml-kit-card--wide,
    .lml-kit-card--soft {
        grid-column: span 12;
    }

    .lml-kit-card {
        min-height: 220px;
    }

    .lml-process__steps,
    .lml-moments__list,
    .lml-plans {
        grid-template-columns: minmax(0, 1fr);
    }

    .lml-process__steps li {
        min-height: 235px;
    }

    .lml-moments__list article {
        min-height: 108px;
    }

    .lml-offer {
        padding: 68px 0;
    }

    .lml-plans {
        max-width: 560px;
    }

    .lml-plan--featured {
        margin-top: 7px;
    }
}

@media (max-width: 575.98px) {
    .lml-hero {
        padding: 39px 0 52px;
    }

    .lml-hero h1 {
        font-size: 58px;
    }

    .lml-hero .lml-lead {
        font-size: 16px;
    }

    .lml-actions {
        display: grid;
        align-items: stretch;
    }

    .lml-actions .lml-button {
        width: 100%;
    }

    .lml-button {
        min-height: 51px;
    }

    .lml-hero__notes {
        display: grid;
    }

    .lml-hero__visual {
        padding: 6px;
        border-radius: 23px;
        transform: none;
    }

    .lml-hero__visual img {
        border-radius: 17px;
    }

    .lml-float-badge {
        max-width: calc(100% - 20px);
        min-height: 36px;
        padding: 7px 10px;
        font-size: 9px;
    }

    .lml-float-badge--top {
        top: 12px;
        right: 10px;
    }

    .lml-float-badge--bottom {
        bottom: 12px;
        left: 10px;
    }

    .lml-assurance__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .lml-assurance__grid > div {
        border-right: 0;
        border-bottom: 1px solid var(--lml-line);
        padding: 17px 12px;
    }

    .lml-assurance__grid > div:last-child {
        border-bottom: 0;
    }

    .lml-section {
        padding: 56px 0;
    }

    .lml-heading {
        margin-bottom: 29px;
        text-align: left;
    }

    .lml-heading .lml-eyebrow {
        justify-content: flex-start;
    }

    .lml-heading h2,
    .lml-story h2,
    .lml-themes h2,
    .lml-moments h2,
    .lml-qr h2,
    .lml-privacy h2,
    .lml-offer h2,
    .lml-faq h2 {
        font-size: 49px;
    }

    .lml-heading > p:last-child {
        margin-left: 0;
        text-align: left;
    }

    .lml-story-card {
        min-height: 0;
        padding: 22px;
    }

    .lml-story-card__icon,
    .lml-kit-card__icon,
    .lml-process__steps li > i {
        margin-bottom: 28px;
    }

    .lml-story-card--feature h3 {
        font-size: 22px;
    }

    .lml-themes__visual,
    .lml-qr__visual {
        padding: 6px;
        border-radius: 23px;
        transform: none;
    }

    .lml-themes__visual img,
    .lml-qr__visual img {
        border-radius: 17px;
    }

    .lml-themes__visual-note {
        right: 10px;
        bottom: 12px;
        max-width: calc(100% - 20px);
        min-height: 36px;
        padding: 7px 10px;
        font-size: 9px;
    }

    .lml-theme-chips {
        grid-template-columns: minmax(0, 1fr);
    }

    .lml-kit__grid {
        gap: 11px;
    }

    .lml-kit-card,
    .lml-kit-card--wide {
        display: block;
        min-height: 0;
        padding: 22px;
    }

    .lml-kit-card--wide .lml-kit-card__icon {
        margin-bottom: 28px;
    }

    .lml-kit-card--pink > strong {
        font-size: 68px;
    }

    .lml-kit-card__arrow {
        position: absolute;
        right: 22px;
        bottom: 22px;
    }

    .lml-process__steps li {
        min-height: 0;
        padding: 23px 21px;
    }

    .lml-moments__list {
        gap: 9px;
    }

    .lml-moments__list article {
        min-height: 0;
        padding: 15px;
    }

    .lml-qr__uses {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lml-qr__uses span {
        justify-content: center;
    }

    .lml-privacy {
        padding: 54px 0;
    }

    .lml-privacy__options {
        grid-template-columns: minmax(0, 1fr);
    }

    .lml-privacy__options span {
        min-height: 116px;
    }

    .lml-privacy__options i {
        margin-bottom: 20px;
    }

    .lml-offer {
        padding: 55px 0;
    }

    .lml-offer__chips {
        display: grid;
    }

    .lml-plan {
        padding: 25px 21px 21px;
        border-radius: 24px;
    }

    .lml-plan__price {
        font-size: 54px;
    }

    .lml-plan__badge {
        font-size: 9px;
    }

    .lml-faq__actions {
        display: grid;
        align-items: stretch;
    }

    .lml-faq__actions .lml-button {
        width: 100%;
    }

    .lml-faq summary {
        font-size: 14px;
    }

    .lml-closing .container {
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lml-page *,
    .lml-page *::before,
    .lml-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .lml-story-card:hover,
    .lml-button:hover {
        transform: none;
    }
}
