:root {
    --lpv2-bg: #050816;
    --lpv2-bg-2: #070d1f;
    --lpv2-panel: rgba(255,255,255,.045);
    --lpv2-panel-strong: rgba(255,255,255,.075);
    --lpv2-border: rgba(255,255,255,.10);
    --lpv2-border-hot: rgba(139,92,246,.48);
    --lpv2-text: #f8fbff;
    --lpv2-muted: #aeb9d4;
    --lpv2-blue: #38bdf8;
    --lpv2-cyan: #06b6d4;
    --lpv2-purple: #8b5cf6;
    --lpv2-indigo: #6366f1;
    --lpv2-amber: #f59e0b;
}

/* Landing V3: loaded from the page Styles section so first paint is styled. */
.lpv2-shell {
    position: relative;
    isolation: isolate;
    color: var(--lpv2-text);
    background:
        radial-gradient(circle at 78% 6%, rgba(99,102,241,.24), transparent 34rem),
        radial-gradient(circle at 16% 22%, rgba(6,182,212,.16), transparent 28rem),
        linear-gradient(180deg,#050816,#070d1f,#040612);
    margin: -1.5rem calc(50% - 50vw) 0;
    padding: 0 max(1.25rem, calc((100vw - 1180px) / 2)) 2.4rem;
    overflow: hidden;
}

.lpv2-shell a { color: inherit; }
.lpv2-shell [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.lpv2-shell [data-reveal].is-visible { opacity: 1; transform: none; }

.lpv2-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
    gap: 3.5rem;
    min-height: min(820px, calc(100vh - 30px));
    align-items: center;
    padding: 5.25rem 0 3.2rem;
}

.lpv2-aurora {
    position: absolute;
    inset: 8% -18% auto auto;
    width: 720px;
    height: 520px;
    pointer-events: none;
    background:
        radial-gradient(circle at 58% 42%, rgba(139,92,246,.46), transparent 32%),
        radial-gradient(circle at 32% 58%, rgba(6,182,212,.32), transparent 30%);
    filter: blur(34px);
    opacity: .7;
}

.lpv2-badge,
.lpv2-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    width: max-content;
    padding: .55rem .85rem;
    border: 1px solid var(--lpv2-border);
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    color: #dbeafe;
    font-size: .79rem;
    font-weight: 800;
    backdrop-filter: blur(18px);
}

.lpv2-badge i { color: var(--lpv2-cyan); }
.lpv2-hero-copy {
    position: relative;
    isolation: isolate;
}
.lpv2-hero-copy::before {
    content: "";
    position: absolute;
    inset: 3.2rem auto auto -1.7rem;
    width: min(480px, 82vw);
    height: 210px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 25% 45%, rgba(56,189,248,.24), transparent 48%),
        radial-gradient(circle at 70% 55%, rgba(168,85,247,.28), transparent 52%);
    filter: blur(34px);
    opacity: .8;
    transform: rotate(-7deg);
    animation: lpv2-title-glow 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}
.lpv2-hero-copy h1 {
    margin: 1.35rem 0 1.45rem;
    color: #fff;
    font-size: clamp(3.4rem, 7.2vw, 6.55rem);
    line-height: .96;
    font-weight: 950;
    letter-spacing: 0;
}
.lpv2-hero-copy h1 span {
    background: linear-gradient(100deg, #38bdf8 0%, #818cf8 38%, #a855f7 72%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lpv2-hero-copy p {
    max-width: 530px;
    color: #cbd5e1;
    font-size: 1.06rem;
    line-height: 1.75;
    margin: 0 0 2.15rem;
}

.lpv2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.75rem;
}
.lpv2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 52px;
    padding: .9rem 1.35rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: .92rem;
}

.lpv2-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 1.35rem 1.85rem;
}
.lpv2-hero-stats span {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: .5rem;
    align-items: center;
}
.lpv2-hero-stats i { color: var(--lpv2-blue); font-size: 1.35rem; grid-row: span 2; }
.lpv2-hero-stats strong { color: #fff; font-size: 1.08rem; line-height: 1; }
.lpv2-hero-stats small { color: var(--lpv2-muted); font-size: .72rem; }

.lpv2-product-stage {
    position: relative;
    min-height: 560px;
    perspective: 1200px;
}
.lpv2-orbit {
    position: absolute;
    inset: 0 0 auto auto;
    width: min(600px, 100%);
    aspect-ratio: 1;
    border: 1px solid rgba(56,189,248,.28);
    border-radius: 50%;
    transform: rotate(-8deg);
    box-shadow: inset 0 0 60px rgba(99,102,241,.14), 0 0 70px rgba(99,102,241,.15);
}
.lpv2-orbit::before,
.lpv2-orbit::after {
    content: "";
    position: absolute;
    inset: 13%;
    border: 1px solid rgba(139,92,246,.34);
    border-radius: inherit;
}
.lpv2-orbit::after {
    inset: 38% -5%;
    border-color: rgba(6,182,212,.26);
    transform: rotate(38deg);
}

.lpv2-dashboard {
    position: absolute;
    inset: 90px 0 auto 48px;
    display: grid;
    grid-template-columns: 150px 1fr;
    --mx: 0px;
    --my: 0px;
    min-height: 390px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(56,189,248,.13), transparent 32%),
        radial-gradient(circle at 92% 16%, rgba(168,85,247,.16), transparent 34%),
        linear-gradient(135deg, rgba(10,18,40,.90), rgba(13,18,38,.78));
    box-shadow:
        0 42px 110px rgba(0,0,0,.58),
        0 0 95px rgba(99,102,241,.24),
        inset 0 1px 0 rgba(255,255,255,.16);
    backdrop-filter: blur(22px);
    transform: translate3d(var(--mx), var(--my), 0) rotateX(3deg) rotateY(-5deg);
    transform-style: preserve-3d;
    transition: transform .35s ease, box-shadow .35s ease;
}
.lpv2-dashboard::before,
.lpv2-dashboard::after {
    content: "";
    position: absolute;
    pointer-events: none;
}
.lpv2-dashboard::before {
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,.18), transparent 28%, transparent 70%, rgba(255,255,255,.08));
    opacity: .35;
}
.lpv2-dashboard::after {
    inset: auto 18% -36px 18%;
    height: 60px;
    border-radius: 999px;
    background: rgba(56,189,248,.22);
    filter: blur(34px);
}
.lpv2-dashboard aside {
    padding: 1.05rem;
    background: rgba(1,6,20,.48);
    border-right: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.lpv2-dashboard aside strong {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .82rem;
    margin-bottom: .8rem;
}
.lpv2-dashboard aside strong i { color: var(--lpv2-indigo); }
.lpv2-dashboard aside span {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .55rem .6rem;
    border-radius: 10px;
    color: #b7c2dc;
    font-size: .72rem;
    font-weight: 700;
}
.lpv2-dashboard aside span.is-active {
    color: #fff;
    background: linear-gradient(135deg, rgba(37,99,235,.45), rgba(124,58,237,.42));
}
.lpv2-dashboard main { padding: 1.35rem; }
.lpv2-dash-head,
.lpv2-kpis,
.lpv2-dash-grid {
    display: grid;
    gap: .95rem;
}
.lpv2-dash-head { grid-template-columns: 1fr auto; align-items: center; margin-bottom: 1.05rem; }
.lpv2-dash-head small,
.lpv2-kpis small,
.lpv2-course-row small,
.lpv2-dash-grid p small {
    color: #8492b4;
    display: block;
    font-size: .65rem;
}
.lpv2-dash-head h2 { margin: .2rem 0 0; font-size: 1.15rem; color: #fff; }
.lpv2-live {
    padding: .35rem .55rem;
    border-radius: 999px;
    color: #67e8f9;
    background: rgba(6,182,212,.10);
    border: 1px solid rgba(6,182,212,.25);
    font-size: .68rem;
    font-weight: 900;
}
.lpv2-kpis { grid-template-columns: repeat(3, 1fr); margin-bottom: 1.1rem; }
.lpv2-kpis div,
.lpv2-dash-grid section {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
    padding: .9rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 14px 32px rgba(0,0,0,.16);
}
.lpv2-kpis strong { display: block; margin-top: .35rem; color: #fff; font-size: 1.35rem; }
.lpv2-kpis span { display: block; height: 5px; margin-top: .7rem; border-radius: 999px; background: linear-gradient(90deg, #38bdf8 72%, rgba(255,255,255,.12) 72%); }
.lpv2-kpis em { color: #34d399; font-style: normal; font-size: .64rem; }
.lpv2-dash-grid { grid-template-columns: 1.25fr .85fr; }
.lpv2-dash-grid h3 { margin: 0 0 .75rem; font-size: .82rem; color: #fff; }
.lpv2-course-row,
.lpv2-dash-grid p {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: .65rem;
    align-items: center;
    margin: .55rem 0;
    color: #dbeafe;
    font-size: .72rem;
}
.lpv2-course-row i {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}
.lpv2-course-row b { font-size: .65rem; color: #93c5fd; }
.lpv2-dash-grid p { grid-template-columns: auto 1fr auto; }
.lpv2-dash-grid p i { color: var(--lpv2-purple); }

.lpv2-floating {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 190px;
    padding: .85rem .95rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(42,53,102,.78), rgba(17,25,55,.72));
    box-shadow: 0 22px 56px rgba(0,0,0,.40), 0 0 38px rgba(124,58,237,.16), inset 0 1px 0 rgba(255,255,255,.14);
    backdrop-filter: blur(18px);
    animation: lpv2-float 5.5s ease-in-out infinite;
}
.lpv2-floating i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: #fff;
    font-size: 1.25rem;
}
.lpv2-floating strong { display: block; color: #fff; font-size: .75rem; }
.lpv2-floating small,
.lpv2-floating span { color: #cbd5e1; font-size: .68rem; }
.lpv2-floating--cert { top: 52px; left: 112px; z-index: 5; }
.lpv2-floating--progress {
    top: 78px;
    right: -18px;
    z-index: 6;
    display: grid;
    place-items: center;
    min-width: 140px;
    text-align: center;
}
.lpv2-floating--progress strong {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border: 6px solid #2563eb;
    border-left-color: rgba(255,255,255,.12);
    border-radius: 50%;
    font-size: 1rem;
}
.lpv2-floating--review { left: 0; bottom: 104px; z-index: 5; animation-delay: -1.8s; }
.lpv2-floating--enroll { right: 86px; bottom: 48px; z-index: 5; animation-delay: -3s; }

@keyframes lpv2-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes lpv2-title-glow {
    0%, 100% { opacity: .68; transform: rotate(-7deg) scale(1); }
    50% { opacity: .92; transform: rotate(-4deg) scale(1.06); }
}

.lpv2-section {
    position: relative;
    padding: 4.6rem 0 0;
}
.lpv2-section-head {
    text-align: center;
    max-width: 690px;
    margin: 0 auto 1.8rem;
}
.lpv2-section-head span,
.lpv2-cert-copy > span {
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .72rem;
    font-weight: 950;
}
.lpv2-section-head h2,
.lpv2-cert-copy h2,
.lp-contact-copy h2 {
    margin: .45rem 0 .55rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.06;
    font-weight: 950;
    letter-spacing: 0;
}
.lpv2-section-head p,
.lpv2-cert-copy p,
.lp-contact-copy p {
    color: var(--lpv2-muted);
    margin: 0;
    line-height: 1.7;
}

.lpv2-preview-grid,
.lpv2-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.05rem;
}
.lpv2-preview-card,
.lpv2-feature-grid article,
.lpv2-testimonials article,
.lp-contact-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--lpv2-border);
    background: var(--lpv2-panel);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.lpv2-preview-card:hover,
.lpv2-feature-grid article:hover,
.lpv2-testimonials article:hover,
.lp-contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--lpv2-border-hot);
    box-shadow: 0 24px 60px rgba(0,0,0,.30), 0 0 46px rgba(99,102,241,.18);
}
.lpv2-preview-card { padding: .85rem; min-height: 238px; }
.lpv2-preview-card h3,
.lpv2-feature-grid h3 { margin: .9rem 0 .35rem; color: #fff; font-size: 1.02rem; }
.lpv2-preview-card p,
.lpv2-feature-grid p { color: #bac6df; font-size: .86rem; line-height: 1.55; margin: 0; }
.lpv2-preview-card a {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    text-decoration: none;
}

.lpv2-mini {
    position: relative;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(4,9,25,.84);
    border: 1px solid rgba(255,255,255,.09);
}
.lpv2-mini--student::before,
.lpv2-mini--analytics::before,
.lpv2-mini--catalog::before {
    content: "";
    position: absolute;
    inset: .75rem;
    border-radius: 10px;
    background:
        linear-gradient(90deg, rgba(96,165,250,.35), transparent 55%) 0 0 / 100% 8px no-repeat,
        linear-gradient(90deg, rgba(139,92,246,.45), transparent 65%) 0 22px / 85% 10px no-repeat,
        linear-gradient(90deg, rgba(6,182,212,.38), transparent 60%) 0 48px / 70% 10px no-repeat;
}
.lpv2-mini--analytics span {
    position: absolute;
    bottom: 20px;
    width: 18%;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, #22d3ee, #7c3aed);
}
.lpv2-mini--analytics span:nth-child(1) { left: 18%; height: 36px; }
.lpv2-mini--analytics span:nth-child(2) { left: 43%; height: 72px; }
.lpv2-mini--analytics span:nth-child(3) { left: 68%; height: 50px; }
.lpv2-mini--certificate {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #172554;
}
.lpv2-mini--certificate strong { text-transform: uppercase; letter-spacing: .12em; }
.lpv2-mini--catalog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
    padding: .75rem;
}
.lpv2-mini--catalog img,
.lpv2-mini--catalog span {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.lpv2-feature-grid article { padding: 1.2rem; }
.lpv2-feature-grid i {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(139,92,246,.95), rgba(6,182,212,.82));
    box-shadow: 0 16px 42px rgba(124,58,237,.34);
    color: #fff;
    font-size: 1.45rem;
}
.lpv2-feature-grid article:nth-child(2) i { background: linear-gradient(135deg, #14b8a6, #2563eb); }
.lpv2-feature-grid article:nth-child(3) i { background: linear-gradient(135deg, #2563eb, #7c3aed); }
.lpv2-feature-grid article:nth-child(4) i { background: linear-gradient(135deg, #f97316, #ef4444); }

.lpv2-trust {
    margin-top: 3.8rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid var(--lpv2-border);
    border-radius: 22px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    overflow: hidden;
}
.lpv2-trust article {
    display: grid;
    place-items: center;
    gap: .35rem;
    min-height: 136px;
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,.08);
}
.lpv2-trust article:last-child { border-right: 0; }
.lpv2-trust i { color: var(--lpv2-blue); font-size: 1.7rem; }
.lpv2-trust strong { color: #fff; font-size: 1.7rem; line-height: 1; }
.lpv2-trust span { color: #cbd5e1; font-size: .84rem; }

.lpv2-certificate {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 4rem;
    align-items: center;
    padding-top: 4.6rem;
}
.lpv2-cert-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 170px;
    gap: 1rem;
    align-items: end;
}
.lpv2-cert-card::before {
    content: "";
    position: absolute;
    inset: 8% 8% -10% 0;
    background: radial-gradient(circle, rgba(139,92,246,.28), transparent 62%);
    filter: blur(28px);
}
.lpv2-cert-paper,
.lpv2-cert-card aside {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 20px;
    box-shadow: 0 28px 80px rgba(0,0,0,.42);
}
.lpv2-cert-paper {
    min-height: 300px;
    padding: 1.5rem;
    color: #172554;
    background: linear-gradient(135deg, #fff, #f7f3eb);
}
.lpv2-cert-paper header { border-bottom: 1px solid rgba(15,23,42,.12); padding-bottom: .8rem; }
.lpv2-cert-paper header span { color: #4f46e5; font-weight: 900; }
.lpv2-cert-paper p {
    margin: 1.6rem 0 .45rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 900;
}
.lpv2-cert-paper h3 {
    margin: 0;
    text-align: center;
    color: #172554;
    font: 900 2rem/1.1 Georgia, serif;
}
.lpv2-cert-paper small {
    display: block;
    text-align: center;
    margin-top: .65rem;
}
.lpv2-cert-paper footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    border-top: 1px solid rgba(15,23,42,.12);
    padding-top: .8rem;
}
.lpv2-cert-paper footer i { color: #d4a11e; font-size: 2rem; }
.lpv2-cert-card aside {
    padding: 1.2rem;
    min-height: 230px;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(20px);
    text-align: center;
}
.lpv2-cert-card aside > i { color: #22c55e; font-size: 2rem; margin-top: 1rem; }
.lpv2-cert-card aside span,
.lpv2-cert-card aside strong { display: block; }
.lpv2-qr {
    width: 92px;
    height: 92px;
    margin: 1rem auto 0;
    border: 8px solid #fff;
    border-radius: 8px;
    background:
        linear-gradient(90deg, #111 50%, transparent 0) 0 0/16px 16px,
        linear-gradient(#111 50%, transparent 0) 0 0/16px 16px,
        #fff;
}
.lpv2-cert-copy ul {
    display: grid;
    gap: .85rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
    color: #dbeafe;
}
.lpv2-cert-copy li { display: flex; gap: .65rem; align-items: center; }
.lpv2-cert-copy i { color: var(--lpv2-purple); }

.lpv2-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .8rem;
    padding-top: 1.2rem;
}
.lpv2-timeline::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 55px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7c3aed, #06b6d4, #22c55e, #f59e0b, #8b5cf6);
    box-shadow: 0 0 22px rgba(139,92,246,.55);
}
.lpv2-timeline article {
    position: relative;
    z-index: 1;
    text-align: center;
}
.lpv2-timeline article div {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto .75rem;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    border: 6px solid rgba(255,255,255,.10);
    box-shadow: 0 0 32px rgba(99,102,241,.42);
}
.lpv2-timeline article:nth-child(3n) div { background: linear-gradient(135deg, #06b6d4, #2563eb); }
.lpv2-timeline article:nth-child(4n) div { background: linear-gradient(135deg, #22c55e, #14b8a6); }
.lpv2-timeline article:nth-child(5n) div { background: linear-gradient(135deg, #f59e0b, #f97316); }
.lpv2-timeline article.is-final div { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.lpv2-timeline strong { color: #fff; }
.lpv2-timeline h3 { color: #fff; font-size: .95rem; margin: .3rem 0; }
.lpv2-timeline p { color: #aeb9d4; font-size: .78rem; line-height: 1.45; margin: 0; }

.lpv2-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.lpv2-testimonials article { padding: 1.2rem; }
.lpv2-testimonials p { color: #e2e8f0; line-height: 1.65; min-height: 84px; }
.lpv2-testimonials div {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.lpv2-testimonials span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    font-weight: 950;
}
.lpv2-testimonials b { display: grid; color: #fff; }
.lpv2-testimonials small { color: #9fb0d0; font-weight: 600; }
.lpv2-testimonials em { margin-left: auto; color: #fbbf24; font-style: normal; letter-spacing: .06em; }

.lpv2-final {
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    transform: none !important;
    margin-top: 4.8rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    padding: 3.2rem 1.5rem;
    text-align: center;
    background:
        radial-gradient(circle at 10% 15%, rgba(255,255,255,.18), transparent 22%),
        radial-gradient(circle at 88% 75%, rgba(56,189,248,.22), transparent 24%),
        linear-gradient(135deg, #2563eb, #7c3aed 52%, #a855f7);
    box-shadow: 0 24px 80px rgba(124,58,237,.35);
}
.lpv2-final h2 { color: #fff !important; margin: 0 0 .5rem; font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 950; }
.lpv2-final p { color: rgba(255,255,255,.92) !important; margin: 0 0 1.65rem; }
.lpv2-final nav { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.lpv2-final .btn-primary-premium,
.lpv2-final .btn-secondary-premium,
.lpv2-final .btn-primary-premium *,
.lpv2-final .btn-secondary-premium * {
    color: #fff !important;
    -webkit-text-fill-color: #fff;
}
.lpv2-final .btn-secondary-premium {
    background: rgba(6,11,30,.22);
    border-color: rgba(255,255,255,.42);
}

.lp-contact { padding-top: 4.5rem; }
.lp-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 2rem;
    align-items: center;
}
.lp-section-sub { color: var(--lpv2-muted); }
.lp-contact-reasons {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: .7rem;
}
.lp-contact-reasons li {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: #e2e8f0;
    font-weight: 800;
}
.lp-contact-reasons i { color: var(--lpv2-cyan); }
.lp-contact-card {
    padding: 1.8rem;
    box-shadow:
        0 26px 70px rgba(0,0,0,.28),
        0 12px 35px rgba(124,58,237,.35),
        inset 0 1px 0 rgba(255,255,255,.16);
    opacity: 1;
}
.lp-contact-glow {
    position: absolute;
    inset: auto -18% -34% -18%;
    height: 150px;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(168,85,247,.28), transparent 62%);
    filter: blur(18px);
    animation: lp-contact-glow 4.5s ease-in-out infinite;
}
@keyframes lp-contact-glow {
    0%, 100% { opacity: .58; transform: translateY(0) scale(1); }
    50% { opacity: .92; transform: translateY(-8px) scale(1.04); }
}
.lp-contact-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6, #a855f7);
    color: #fff;
    font-size: 1.45rem;
    margin-bottom: 1.15rem;
}
.lp-contact-label {
    display: block;
    color: #93c5fd;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.lp-contact-email {
    display: inline-block;
    margin: .45rem 0 1.45rem;
    color: #fff;
    font-size: clamp(1.2rem, 3.5vw, 1.65rem);
    font-weight: 950;
    overflow-wrap: anywhere;
    text-decoration: none;
}
.lp-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}
.lp-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 54px;
    padding: .9rem 1.2rem;
    border-radius: 16px;
    font-weight: 900;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    opacity: 1;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.lp-contact-btn--primary {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6, #a855f7);
    color: #fff !important;
    box-shadow: 0 12px 35px rgba(124,58,237,.35);
}
.lp-contact-btn--ghost {
    background: rgba(255,255,255,.08);
    color: #fff;
    border-color: rgba(255,255,255,.18);
}
.lp-contact-btn--primary:hover i { transform: translateX(3px); }
.lp-contact-response { color: #aeb9d4; margin: 1rem 0 0; }
.lp-contact-live {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.lpv2-footer {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, .75fr) 1.35fr;
    gap: 2rem;
    padding: 3.2rem 0 .5rem;
    color: #aeb9d4;
}
.lpv2-footer strong {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #fff;
    font-size: 1.08rem;
}
.lpv2-footer strong i { color: #6366f1; }
.lpv2-footer b { display: block; color: #fff; margin-bottom: .7rem; }
.lpv2-footer a {
    display: block;
    color: #aeb9d4;
    text-decoration: none;
    margin: .35rem 0;
    font-size: .88rem;
}
.lpv2-footer nav { display: flex; gap: .65rem; margin-top: 1rem; }
.lpv2-footer nav a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
}
.lpv2-newsletter {
    display: grid;
    grid-template-columns: 1fr 48px;
    min-height: 48px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
}
.lpv2-newsletter input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    padding: 0 .9rem;
}
.lpv2-newsletter button {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

@media (max-width: 1060px) {
    .lpv2-hero { grid-template-columns: 1fr; min-height: auto; }
    .lpv2-product-stage { min-height: 520px; }
    .lpv2-dashboard { left: 0; right: 0; }
    .lpv2-preview-grid,
    .lpv2-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .lpv2-certificate { grid-template-columns: 1fr; gap: 2rem; }
    .lpv2-timeline { grid-template-columns: repeat(4, 1fr); }
    .lpv2-timeline::before { display: none; }
    .lpv2-footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .lpv2-shell { padding-left: 1rem; padding-right: 1rem; }
    .lpv2-hero { padding-top: 3.5rem; gap: 2rem; }
    .lpv2-hero-copy h1 { font-size: 3.25rem; }
    .lpv2-actions,
    .lpv2-final nav,
    .lp-contact-actions { flex-direction: column; }
    .lpv2-btn,
    .lp-contact-btn { width: 100%; }
    .lpv2-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .lpv2-product-stage { min-height: auto; }
    .lpv2-dashboard {
        position: relative;
        inset: auto;
        grid-template-columns: 1fr;
        transform: none;
    }
    .lpv2-dashboard aside,
    .lpv2-floating,
    .lpv2-orbit { display: none; }
    .lpv2-kpis,
    .lpv2-dash-grid,
    .lpv2-preview-grid,
    .lpv2-feature-grid,
    .lpv2-trust,
    .lpv2-testimonials,
    .lpv2-cert-card,
    .lp-contact-grid,
    .lpv2-footer { grid-template-columns: 1fr; }
    .lpv2-trust article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .lpv2-timeline { grid-template-columns: repeat(2, 1fr); }
    .lpv2-cert-card aside { min-height: 190px; }
}

@media (prefers-reduced-motion: reduce) {
    .lpv2-shell [data-reveal],
    .lpv2-floating,
    .lpv2-hero-copy::before,
    .lp-contact-glow,
    .lpv2-btn,
    .lpv2-preview-card,
    .lpv2-feature-grid article,
    .lpv2-testimonials article,
    .lp-contact-card {
        animation: none !important;
        transition: none !important;
    }
}
