:root {
    --lxp-navy: #07172D;
    --lxp-navy-deep: #061426;
    --lxp-gold: #D7AA42;
    --lxp-gold-light: #F5D477;
    --lxp-slate: #64748B;
    --lxp-bg: #F6F8FC;
    --lxp-white: #FFFFFF;
    --lxp-text: #0F172A;
    --lxp-border: rgba(100, 116, 139, 0.22);
    --lxp-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --lxp-shadow-dark: 0 25px 70px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--lxp-text);
    background: var(--lxp-bg);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.lxp-page {
    min-height: 100vh;
    overflow-x: hidden;
}

.lxp-container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER */

.lxp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background:
        linear-gradient(90deg, rgba(6, 20, 38, 0.98), rgba(7, 23, 45, 0.98));
    border-bottom: 1px solid rgba(215, 170, 66, 0.18);
    backdrop-filter: blur(14px);
}

.lxp-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.lxp-logo,
.lxp-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 24px;
    color: var(--lxp-gold-light);
    letter-spacing: -0.04em;
}

.lxp-logo-mark,
.lxp-footer-logo span {
    width: 38px;
    height: 38px;
    border: 1px solid var(--lxp-gold);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lxp-gold);
    background: rgba(215, 170, 66, 0.08);
    box-shadow: 0 0 22px rgba(215, 170, 66, 0.18);
}

.lxp-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
}

.lxp-nav a {
    transition: color 0.2s ease;
}

.lxp-nav a:hover,
.lxp-nav a.active {
    color: var(--lxp-gold-light);
}

.lxp-nav-demo {
    padding: 12px 18px;
    border: 1px solid var(--lxp-gold);
    border-radius: 6px;
    color: var(--lxp-gold-light);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.lxp-nav-demo:hover {
    background: var(--lxp-gold);
    color: var(--lxp-navy-deep);
}

/* HERO */

.lxp-hero {
    position: relative;
    padding: 72px 0 76px;
    color: var(--lxp-white);
    background:
        radial-gradient(circle at 18% 28%, rgba(215, 170, 66, 0.18), transparent 28%),
        radial-gradient(circle at 86% 20%, rgba(245, 212, 119, 0.10), transparent 26%),
        linear-gradient(135deg, var(--lxp-navy-deep), var(--lxp-navy));
    overflow: hidden;
}

.lxp-hero::before {
    content: "";
    position: absolute;
    inset: auto -12% -45% -12%;
    height: 420px;
    background:
        repeating-radial-gradient(
            ellipse at center,
            rgba(215, 170, 66, 0.14) 0,
            rgba(215, 170, 66, 0.14) 1px,
            transparent 2px,
            transparent 18px
        );
    opacity: 0.28;
    transform: rotate(-8deg);
}

.lxp-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 48px;
    align-items: center;
}

.lxp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    margin-bottom: 18px;
    border: 1px solid rgba(215, 170, 66, 0.28);
    border-radius: 999px;
    color: var(--lxp-gold-light);
    background: rgba(215, 170, 66, 0.08);
    font-size: 13px;
    font-weight: 700;
}

.lxp-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(54px, 7vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.07em;
    color: var(--lxp-white);
}

.lxp-hero h1 span {
    color: var(--lxp-gold-light);
}

.lxp-hero h2 {
    max-width: 540px;
    margin: 0 0 22px;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.05em;
    color: var(--lxp-white);
}

.lxp-hero p {
    max-width: 570px;
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
}

.lxp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.lxp-btn {
    min-height: 54px;
    padding: 0 28px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lxp-btn:hover {
    transform: translateY(-2px);
}

.lxp-btn-gold {
    background: linear-gradient(135deg, var(--lxp-gold-light), var(--lxp-gold));
    color: var(--lxp-navy-deep);
    box-shadow: 0 16px 30px rgba(215, 170, 66, 0.28);
}

.lxp-btn-outline {
    border-color: var(--lxp-gold);
    color: var(--lxp-white);
    background: rgba(255, 255, 255, 0.02);
}

.lxp-btn-outline:hover {
    background: rgba(215, 170, 66, 0.10);
}

.lxp-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 42px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 700;
}

.lxp-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lxp-trust-row span::before {
    content: "◉";
    color: var(--lxp-gold);
    font-size: 11px;
}

/* HERO MOCKUP */

.lxp-hero-visual {
    perspective: 1200px;
}

.lxp-app-frame {
    min-height: 500px;
    border: 1px solid rgba(215, 170, 66, 0.24);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(13, 32, 58, 0.98), rgba(5, 15, 30, 0.98));
    box-shadow: var(--lxp-shadow-dark);
    transform: rotateY(-8deg) rotateX(4deg);
    overflow: hidden;
}

.lxp-app-top {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lxp-app-brand {
    color: var(--lxp-gold-light);
    font-weight: 800;
}

.lxp-app-brand span {
    color: var(--lxp-gold);
}

.lxp-app-user {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.lxp-app-user span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lxp-gold-light), var(--lxp-gold));
}

.lxp-app-body {
    display: grid;
    grid-template-columns: 128px 1fr;
    min-height: 442px;
}

.lxp-app-sidebar {
    padding: 18px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.lxp-app-sidebar span {
    display: block;
    padding: 10px 12px;
    margin-bottom: 6px;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 12px;
}

.lxp-app-sidebar span.active {
    background: rgba(215, 170, 66, 0.12);
    color: var(--lxp-gold-light);
}

.lxp-app-main {
    padding: 20px;
}

.lxp-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.lxp-mini-grid div,
.lxp-panel {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.lxp-mini-grid div {
    min-height: 106px;
    padding: 14px;
}

.lxp-mini-grid small {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
}

.lxp-mini-grid strong {
    display: block;
    margin: 8px 0 6px;
    color: var(--lxp-white);
    font-size: 28px;
}

.lxp-mini-grid em {
    color: var(--lxp-gold-light);
    font-size: 11px;
    font-style: normal;
}

.lxp-dashboard-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 0.95fr;
    gap: 14px;
}

.lxp-panel {
    min-height: 240px;
    padding: 16px;
}

.lxp-panel h4 {
    margin: 0 0 14px;
    color: var(--lxp-white);
    font-size: 14px;
}

.lxp-panel p {
    margin: 0 0 13px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.45;
}

.lxp-panel p:last-child {
    border-bottom: 0;
}

.lxp-panel b {
    color: var(--lxp-gold-light);
}

/* SECTIONS */

.lxp-section {
    padding: 64px 0;
    background: var(--lxp-bg);
}

.lxp-section-soft {
    padding-top: 18px;
}

.lxp-section-heading {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.lxp-section-heading span {
    display: block;
    width: 48px;
    height: 2px;
    margin: 0 auto 14px;
    background: var(--lxp-gold);
}

.lxp-section-heading h2 {
    margin: 0 0 14px;
    color: var(--lxp-text);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.05em;
}

.lxp-section-heading p {
    margin: 0;
    color: var(--lxp-slate);
    font-size: 17px;
    line-height: 1.7;
}

/* FEATURES */

.lxp-feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.lxp-feature-card {
    min-height: 172px;
    padding: 24px 22px;
    border: 1px solid var(--lxp-border);
    border-radius: 10px;
    background: var(--lxp-white);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lxp-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(215, 170, 66, 0.42);
    box-shadow: var(--lxp-shadow);
}

.lxp-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    border: 1px solid rgba(215, 170, 66, 0.45);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lxp-gold);
    background: rgba(215, 170, 66, 0.07);
    font-size: 19px;
}

.lxp-feature-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--lxp-text);
}

.lxp-feature-card p {
    margin: 0;
    color: var(--lxp-slate);
    font-size: 14px;
    line-height: 1.65;
}

/* PRICING */

.lxp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.lxp-price-card {
    position: relative;
    min-height: 360px;
    padding: 30px 26px 26px;
    border: 1px solid var(--lxp-border);
    border-radius: 12px;
    background: var(--lxp-white);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
}

.lxp-price-card h3 {
    margin: 0;
    text-align: center;
    color: var(--lxp-text);
    font-size: 24px;
    letter-spacing: -0.04em;
}

.lxp-price-card > p {
    margin: 8px 0 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lxp-border);
    text-align: center;
    color: var(--lxp-slate);
}

.lxp-price-card ul {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
}

.lxp-price-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 13px;
    color: var(--lxp-text);
    font-size: 14px;
    line-height: 1.45;
}

.lxp-price-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--lxp-gold);
    font-weight: 900;
}

.lxp-price-btn {
    min-height: 46px;
    border: 1px solid var(--lxp-gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lxp-text);
    font-weight: 800;
    transition: all 0.2s ease;
}

.lxp-price-btn:hover,
.lxp-price-btn-gold {
    background: linear-gradient(135deg, var(--lxp-gold-light), var(--lxp-gold));
    color: var(--lxp-navy-deep);
}

.lxp-price-featured {
    border-color: var(--lxp-gold);
    transform: translateY(-10px);
}

.lxp-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lxp-gold-light), var(--lxp-gold));
    color: var(--lxp-navy-deep);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.lxp-price-dark {
    border-color: rgba(215, 170, 66, 0.44);
    background:
        radial-gradient(circle at 60% 0%, rgba(215, 170, 66, 0.14), transparent 34%),
        linear-gradient(145deg, var(--lxp-navy-deep), var(--lxp-navy));
    color: var(--lxp-white);
    box-shadow: 0 22px 54px rgba(6, 20, 38, 0.28);
}

.lxp-price-dark h3 {
    color: var(--lxp-gold-light);
}

.lxp-price-dark > p {
    border-bottom-color: rgba(255, 255, 255, 0.10);
    color: var(--lxp-gold-light);
}

.lxp-price-dark li {
    color: rgba(255, 255, 255, 0.88);
}

.lxp-price-btn-dark {
    color: var(--lxp-gold-light);
}

/* AI SECTION */

.lxp-ai-section {
    padding: 72px 0;
    color: var(--lxp-white);
    background:
        radial-gradient(circle at 12% 15%, rgba(215, 170, 66, 0.18), transparent 30%),
        linear-gradient(135deg, var(--lxp-navy-deep), var(--lxp-navy));
}

.lxp-ai-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    align-items: center;
}

.lxp-ai-label {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--lxp-gold-light);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.14em;
}

.lxp-ai-section h2,
.lxp-contact-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.05em;
}

.lxp-ai-section p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.lxp-ai-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.lxp-ai-list div {
    padding: 22px;
    border: 1px solid rgba(215, 170, 66, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
}

.lxp-ai-list strong {
    display: block;
    margin-bottom: 8px;
    color: var(--lxp-gold-light);
    font-size: 17px;
}

.lxp-ai-list span {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.6;
}

/* DEMO BANNER */

.lxp-demo-banner {
    padding: 26px 0 0;
    background: var(--lxp-bg);
}

.lxp-demo-inner {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: center;
    min-height: 220px;
    padding: 36px 70px;
    border-radius: 13px;
    color: var(--lxp-white);
    background:
        radial-gradient(circle at 70% 48%, rgba(215, 170, 66, 0.18), transparent 28%),
        linear-gradient(135deg, var(--lxp-navy-deep), var(--lxp-navy));
    box-shadow: 0 18px 44px rgba(6, 20, 38, 0.16);
    overflow: hidden;
}

.lxp-demo-inner h2 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.lxp-demo-inner p {
    max-width: 480px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.lxp-demo-device {
    display: flex;
    justify-content: flex-end;
}

.lxp-demo-screen {
    width: 380px;
    min-height: 150px;
    padding: 24px;
    border: 1px solid rgba(215, 170, 66, 0.28);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.25);
}

.lxp-demo-screen span,
.lxp-demo-screen strong,
.lxp-demo-screen em {
    display: block;
}

.lxp-demo-screen span {
    color: var(--lxp-gold-light);
    font-weight: 800;
    margin-bottom: 16px;
}

.lxp-demo-screen strong {
    color: var(--lxp-white);
    font-size: 24px;
    margin-bottom: 8px;
}

.lxp-demo-screen em {
    color: rgba(255, 255, 255, 0.72);
    font-style: normal;
}

/* CONTACT */

.lxp-contact-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 42px;
    align-items: start;
}

.lxp-contact-copy h2 {
    color: var(--lxp-text);
}

.lxp-contact-copy p {
    margin: 0;
    color: var(--lxp-slate);
    font-size: 17px;
    line-height: 1.75;
}

.lxp-contact-note {
    margin-top: 24px;
    padding: 22px;
    border-left: 4px solid var(--lxp-gold);
    border-radius: 10px;
    background: var(--lxp-white);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.lxp-contact-note strong,
.lxp-contact-note span {
    display: block;
}

.lxp-contact-note strong {
    margin-bottom: 8px;
}

.lxp-contact-note span {
    color: var(--lxp-slate);
    line-height: 1.6;
}

.lxp-contact-form {
    padding: 28px;
    border: 1px solid var(--lxp-border);
    border-radius: 14px;
    background: var(--lxp-white);
    box-shadow: var(--lxp-shadow);
}

.lxp-contact-form label {
    display: block;
    margin-bottom: 16px;
    color: var(--lxp-text);
    font-size: 14px;
    font-weight: 800;
}

.lxp-contact-form input,
.lxp-contact-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 14px 15px;
    border: 1px solid rgba(100, 116, 139, 0.30);
    border-radius: 8px;
    outline: none;
    background: #fbfcff;
    color: var(--lxp-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lxp-contact-form textarea {
    resize: vertical;
}

.lxp-contact-form input:focus,
.lxp-contact-form textarea:focus {
    border-color: var(--lxp-gold);
    box-shadow: 0 0 0 4px rgba(215, 170, 66, 0.12);
}

.lxp-contact-form button {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--lxp-gold-light), var(--lxp-gold));
    color: var(--lxp-navy-deep);
    font-weight: 900;
}

/* FOOTER */

.lxp-footer {
    color: rgba(255, 255, 255, 0.76);
    background: linear-gradient(135deg, var(--lxp-navy-deep), var(--lxp-navy));
}

.lxp-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 44px;
    padding: 38px 0;
}

.lxp-footer-logo {
    font-size: 19px;
}

.lxp-footer p {
    max-width: 270px;
    margin: 14px 0 0;
    line-height: 1.6;
}

.lxp-footer h4 {
    margin: 0 0 14px;
    color: var(--lxp-white);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.lxp-footer a:not(.lxp-footer-logo) {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
}

.lxp-footer a:hover {
    color: var(--lxp-gold-light);
}

.lxp-footer-bottom {
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .lxp-nav {
        gap: 18px;
    }

    .lxp-hero-grid {
        grid-template-columns: 1fr;
    }

    .lxp-app-frame {
        transform: none;
    }

    .lxp-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .lxp-header-inner {
        min-height: auto;
        padding: 18px 0;
        flex-wrap: wrap;
    }

    .lxp-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .lxp-nav a {
        white-space: nowrap;
    }

    .lxp-hero {
        padding: 48px 0 52px;
    }

    .lxp-app-body {
        grid-template-columns: 1fr;
    }

    .lxp-app-sidebar {
        display: none;
    }

    .lxp-mini-grid,
    .lxp-dashboard-grid,
    .lxp-pricing-grid,
    .lxp-ai-grid,
    .lxp-demo-inner,
    .lxp-contact-grid,
    .lxp-footer-grid {
        grid-template-columns: 1fr;
    }

    .lxp-price-featured {
        transform: none;
    }

    .lxp-ai-list {
        grid-template-columns: 1fr;
    }

    .lxp-demo-inner {
        padding: 30px;
    }

    .lxp-demo-device {
        justify-content: flex-start;
    }

    .lxp-demo-screen {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .lxp-container {
        width: min(100% - 28px, 1120px);
    }

    .lxp-logo {
        font-size: 21px;
    }

    .lxp-nav-demo {
        padding: 10px 13px;
        font-size: 13px;
    }

    .lxp-hero h1 {
        font-size: 52px;
    }

    .lxp-hero h2 {
        font-size: 30px;
    }

    .lxp-hero p {
        font-size: 16px;
    }

    .lxp-hero-actions {
        flex-direction: column;
    }

    .lxp-btn {
        width: 100%;
    }

    .lxp-trust-row {
        gap: 14px;
    }

    .lxp-app-frame {
        min-height: auto;
        border-radius: 14px;
    }

    .lxp-app-main {
        padding: 14px;
    }

    .lxp-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lxp-panel {
        min-height: auto;
    }

    .lxp-feature-grid {
        grid-template-columns: 1fr;
    }

    .lxp-section {
        padding: 46px 0;
    }

    .lxp-section-heading h2,
    .lxp-ai-section h2,
    .lxp-contact-copy h2 {
        font-size: 30px;
    }

    .lxp-demo-inner h2 {
        font-size: 28px;
    }

    .lxp-contact-form {
        padding: 20px;
    }
}

@media (max-width: 420px) {
    .lxp-mini-grid {
        grid-template-columns: 1fr;
    }

    .lxp-header-inner {
        gap: 14px;
    }

    .lxp-nav {
        gap: 16px;
        font-size: 13px;
    }
}

/* =========================================================
   LEXMONITOR PUBLIC - FIRST VISUAL TUNING
   ========================================================= */

.lxp-header-inner {
    min-height: 76px;
}

.lxp-hero {
    padding: 58px 0 64px;
}

.lxp-hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
}

.lxp-hero h1 {
    font-size: clamp(54px, 6.2vw, 76px);
}

.lxp-hero h2 {
    max-width: 560px;
    font-size: clamp(30px, 3.1vw, 40px);
}

.lxp-hero p {
    max-width: 610px;
    font-size: 17px;
}

.lxp-app-frame {
    min-height: 430px;
    transform: rotateY(-5deg) rotateX(3deg);
}

.lxp-app-body {
    min-height: 372px;
}

.lxp-app-main {
    padding: 18px;
}

.lxp-mini-grid div {
    min-height: 92px;
    padding: 13px;
}

.lxp-mini-grid strong {
    font-size: 25px;
}

.lxp-panel {
    min-height: 210px;
    padding: 14px;
}

.lxp-section {
    padding: 54px 0;
}

.lxp-section-heading {
    margin-bottom: 28px;
}

.lxp-section-heading h2 {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.lxp-feature-card {
    min-height: 155px;
    padding: 22px 20px;
}

.lxp-feature-card h3 {
    font-size: 17px;
}

.lxp-feature-card p {
    font-size: 13.5px;
    line-height: 1.58;
}

.lxp-icon {
    font-size: 17px;
}

.lxp-price-card {
    min-height: 340px;
}

.lxp-ai-section {
    padding: 58px 0;
}

.lxp-ai-list div {
    padding: 20px;
}

.lxp-demo-banner {
    padding: 34px 0 0;
}

.lxp-demo-inner {
    min-height: 205px;
    padding: 34px 58px;
}

.lxp-demo-inner h2 {
    font-size: 32px;
}

.lxp-contact-grid {
    align-items: center;
}

.lxp-contact-form {
    padding: 24px;
}

.lxp-contact-form label {
    margin-bottom: 13px;
}

.lxp-contact-form input,
.lxp-contact-form textarea {
    padding: 12px 14px;
}

.lxp-contact-form textarea {
    min-height: 120px;
}

.lxp-footer-grid {
    padding: 34px 0;
}

/* =========================================================
   LEXMONITOR PUBLIC - SECOND VISUAL TUNING
   Hero mockup compact + contact/footer balance
   ========================================================= */

.lxp-hero {
    min-height: auto;
    padding: 54px 0 58px;
}

.lxp-hero-grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 34px;
}

.lxp-hero-content {
    position: relative;
    z-index: 2;
}

.lxp-hero-visual {
    max-width: 620px;
    justify-self: end;
}

.lxp-app-frame {
    width: 100%;
    min-height: 390px;
    transform: rotateY(-3deg) rotateX(2deg);
    border-radius: 16px;
}

.lxp-app-top {
    min-height: 50px;
    padding: 0 18px;
}

.lxp-app-body {
    grid-template-columns: 112px 1fr;
    min-height: 340px;
}

.lxp-app-sidebar {
    padding: 14px 11px;
}

.lxp-app-sidebar span {
    padding: 8px 10px;
    margin-bottom: 4px;
    font-size: 11px;
}

.lxp-app-main {
    padding: 14px;
}

.lxp-mini-grid {
    gap: 10px;
    margin-bottom: 12px;
}

.lxp-mini-grid div {
    min-height: 82px;
    padding: 11px;
}

.lxp-mini-grid small {
    font-size: 11px;
}

.lxp-mini-grid strong {
    margin: 5px 0 4px;
    font-size: 22px;
}

.lxp-mini-grid em {
    font-size: 10px;
}

.lxp-dashboard-grid {
    gap: 10px;
}

.lxp-panel {
    min-height: 182px;
    padding: 12px;
}

.lxp-panel h4 {
    margin-bottom: 10px;
    font-size: 13px;
}

.lxp-panel p {
    margin-bottom: 9px;
    padding-bottom: 9px;
    font-size: 11px;
}

.lxp-contact-form {
    max-width: 620px;
    justify-self: end;
}

.lxp-contact-copy h2 {
    font-size: clamp(32px, 3.6vw, 48px);
}

.lxp-contact-copy p {
    max-width: 640px;
}

.lxp-contact-note {
    max-width: 560px;
}

.lxp-footer-grid {
    align-items: start;
}

/* =========================================================
   LEXMONITOR PUBLIC - LOGO + PREMIUM ICONS + NAVY BORDERS
   ========================================================= */

.lxp-logo-mark,
.lxp-footer-logo span {
    width: 40px;
    height: 40px;
    padding: 7px;
    border: 1px solid rgba(215, 170, 66, 0.72);
    border-radius: 12px;
    background: rgba(215, 170, 66, 0.06);
    color: var(--lxp-gold);
    box-shadow: 0 0 18px rgba(215, 170, 66, 0.12);
}

.lxp-logo-svg svg,
.lxp-app-brand-icon svg,
.lxp-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lxp-app-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lxp-gold-light);
    font-weight: 800;
}

.lxp-app-brand-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    color: var(--lxp-gold);
    flex-shrink: 0;
}

.lxp-icon {
    width: 44px;
    height: 44px;
    padding: 9px;
    margin-bottom: 16px;
    border: 1px solid rgba(215, 170, 66, 0.52);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lxp-gold);
    background: rgba(215, 170, 66, 0.04);
    font-size: 0;
}

.lxp-feature-card {
    border: 1px solid rgba(7, 23, 45, 0.16);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.lxp-feature-card:hover {
    border-color: rgba(7, 23, 45, 0.32);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
}

.lxp-price-card,
.lxp-ai-list div,
.lxp-contact-form,
.lxp-contact-note {
    border-color: rgba(7, 23, 45, 0.16);
}

.lxp-feature-card h3 {
    color: var(--lxp-navy);
}

.lxp-feature-card p {
    color: #566884;
}

/* =========================================================
   LEXMONITOR PUBLIC - SERIOUS LOGO + DEMO LOGIN PAGE
   ========================================================= */

.lxp-logo-mark,
.lxp-footer-logo span {
    font-size: 0;
}

.lxp-logo-mark::before,
.lxp-footer-logo span::before {
    content: "LM";
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.08em;
    color: var(--lxp-gold-light);
}

.lxp-logo-mark svg,
.lxp-footer-logo svg {
    display: none;
}

.lxp-app-brand-icon {
    display: none;
}

.lxp-app-brand::before {
    content: "LM";
    width: 18px;
    height: 18px;
    border: 1px solid rgba(215, 170, 66, 0.55);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lxp-gold-light);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.lxp-demo-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--lxp-white);
    background:
        radial-gradient(circle at 15% 18%, rgba(215, 170, 66, 0.18), transparent 28%),
        radial-gradient(circle at 82% 82%, rgba(245, 212, 119, 0.10), transparent 26%),
        linear-gradient(135deg, var(--lxp-navy-deep), var(--lxp-navy));
}

.lxp-demo-login-shell {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 44px 0;
}

.lxp-demo-login-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--lxp-gold-light);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.lxp-demo-logo-mark {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(215, 170, 66, 0.72);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lxp-gold-light);
    background: rgba(215, 170, 66, 0.07);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.lxp-demo-login-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: stretch;
    padding: 36px;
    border: 1px solid rgba(215, 170, 66, 0.22);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(14px);
}

.lxp-demo-login-left,
.lxp-demo-login-panel {
    border: 1px solid rgba(215, 170, 66, 0.20);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
}

.lxp-demo-login-left {
    padding: 34px;
}

.lxp-demo-login-left h1 {
    margin: 0 0 18px;
    max-width: 620px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.lxp-demo-login-left p {
    margin: 0;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.lxp-demo-credentials {
    margin: 28px 0 18px;
    padding: 24px;
    border-left: 4px solid var(--lxp-gold);
    border-radius: 14px;
    background: rgba(6, 20, 38, 0.72);
}

.lxp-demo-credentials h2 {
    margin: 0 0 18px;
    color: var(--lxp-white);
    font-size: 24px;
}

.lxp-demo-credentials div {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.lxp-demo-credentials span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.lxp-demo-credentials strong {
    color: var(--lxp-gold-light);
    font-size: 17px;
    word-break: break-all;
}

.lxp-demo-login-note {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.58) !important;
}

.lxp-demo-login-right {
    display: flex;
}

.lxp-demo-login-panel {
    width: 100%;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lxp-demo-login-panel h2 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.12;
}

.lxp-demo-login-panel p {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.lxp-demo-login-panel .lxp-btn {
    width: 100%;
}

.lxp-demo-back-link {
    display: inline-flex;
    justify-content: center;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.66);
    font-weight: 700;
}

.lxp-demo-back-link:hover {
    color: var(--lxp-gold-light);
}

@media (max-width: 860px) {
    .lxp-demo-login-card {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .lxp-demo-login-left,
    .lxp-demo-login-panel {
        padding: 24px;
    }

    .lxp-demo-credentials div {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

@media (max-width: 520px) {
    .lxp-demo-login-shell {
        width: min(100% - 28px, 1120px);
    }

    .lxp-demo-login-logo {
        font-size: 24px;
    }

    .lxp-demo-login-left h1 {
        font-size: 34px;
    }

    .lxp-demo-login-panel h2 {
        font-size: 28px;
    }
}

/* =========================================================
   LEXMONITOR PUBLIC - DEMO LOGIN FORM
   ========================================================= */

.lxp-demo-login-form {
    margin-top: 22px;
}

.lxp-demo-login-form label {
    display: block;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 800;
}

.lxp-demo-login-form input {
    width: 100%;
    margin-top: 8px;
    padding: 15px 16px;
    border: 1px solid rgba(215, 170, 66, 0.28);
    border-radius: 10px;
    outline: none;
    background: rgba(6, 20, 38, 0.72);
    color: var(--lxp-gold-light);
    font-size: 17px;
    font-weight: 800;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lxp-demo-login-form input:focus {
    border-color: var(--lxp-gold);
    box-shadow: 0 0 0 4px rgba(215, 170, 66, 0.12);
    background: rgba(6, 20, 38, 0.92);
}

.lxp-demo-submit {
    width: 100%;
    min-height: 54px;
    margin-top: 6px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--lxp-gold-light), var(--lxp-gold));
    color: var(--lxp-navy-deep);
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(215, 170, 66, 0.24);
}

.lxp-demo-submit:hover {
    transform: translateY(-1px);
}

.lxp-demo-login-error {
    margin: 18px 0 0;
    padding: 13px 15px;
    border: 1px solid rgba(215, 170, 66, 0.35);
    border-radius: 10px;
    background: rgba(215, 170, 66, 0.10);
    color: var(--lxp-gold-light);
    font-weight: 800;
    line-height: 1.5;
}

/* LexMonitor public package pages additions */

.lxp-feature-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    width: 100%;
    justify-content: stretch;
    align-items: stretch;
}

.lxp-feature-grid-three .lxp-feature-card {
    width: 100%;
    min-height: 280px;
}

.lxp-package-price-box {
    margin: 24px 0;
    padding: 18px;
    border: 1px solid rgba(215, 170, 66, 0.35);
    border-radius: 16px;
    text-align: center;
    background: rgba(215, 170, 66, 0.08);
}

.lxp-package-price-box strong {
    display: block;
    font-size: 32px;
    line-height: 1.1;
    color: #07172D;
    font-weight: 900;
}

.lxp-package-price-box span {
    display: block;
    margin-top: 6px;
    color: #64748B;
    font-weight: 700;
}

.lxp-package-price-box em {
    display: block;
    margin-top: 10px;
    color: #D7AA42;
    font-style: normal;
    font-weight: 800;
}

.lxp-demo-banner-spaced {
    margin-bottom: 70px;
}

@media (max-width: 980px) {
    .lxp-feature-grid-three {
        grid-template-columns: 1fr;
    }

    .lxp-feature-grid-three .lxp-feature-card {
        min-height: auto;
    }

    .lxp-demo-banner-spaced {
        margin-bottom: 45px;
    }
}

/* LexMonitor public package pages additions */

.lxp-feature-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    width: 100%;
    justify-content: stretch;
    align-items: stretch;
}

.lxp-feature-grid-three .lxp-feature-card {
    width: 100%;
    min-height: 190px;
}

.lxp-package-price-box {
    margin: 24px 0;
    padding: 18px;
    border: 1px solid rgba(215, 170, 66, 0.35);
    border-radius: 16px;
    text-align: center;
    background: rgba(215, 170, 66, 0.08);
}

.lxp-package-price-box strong {
    display: block;
    font-size: 32px;
    line-height: 1.1;
    color: #07172D;
    font-weight: 900;
}

.lxp-package-price-box span {
    display: block;
    margin-top: 6px;
    color: #64748B;
    font-weight: 700;
}

.lxp-package-price-box em {
    display: block;
    margin-top: 10px;
    color: #D7AA42;
    font-style: normal;
    font-weight: 800;
}

.lxp-demo-banner-spaced {
    margin-bottom: 70px;
}

@media (max-width: 980px) {
    .lxp-feature-grid-three {
        grid-template-columns: 1fr;
    }

    .lxp-feature-grid-three .lxp-feature-card {
        min-height: auto;
    }

    .lxp-demo-banner-spaced {
        margin-bottom: 45px;
    }
}

.lxp-price-dark .lxp-package-price-box {
    background: rgba(215, 170, 66, 0.10);
    border-color: rgba(245, 212, 119, 0.45);
}

.lxp-price-dark .lxp-package-price-box strong {
    color: #F5D477;
}

.lxp-price-dark .lxp-package-price-box span {
    color: rgba(255, 255, 255, 0.75);
}

.lxp-price-dark .lxp-package-price-box em {
    color: #F5D477;
}

/* =========================================================
   LEXMONITOR PUBLIC - REAL PRODUCT PRESENTATION
   ========================================================= */

.lxp-real-app-frame {
    width: 100%;
    border: 1px solid rgba(215, 170, 66, 0.32);
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    transform: rotateY(-3deg) rotateX(2deg);
}

.lxp-real-app-toolbar {
    min-height: 42px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid rgba(7, 23, 45, 0.10);
    background: linear-gradient(180deg, #f8fafc, #edf2f7);
}

.lxp-real-app-toolbar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(7, 23, 45, 0.22);
}

.lxp-real-app-toolbar strong {
    margin-left: 8px;
    color: var(--lxp-navy);
    font-size: 12px;
}

.lxp-real-app-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.lxp-showcase-section {
    padding: 70px 0;
    background:
        linear-gradient(180deg, #f6f8fc 0%, #ffffff 48%, #f6f8fc 100%);
}

.lxp-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.lxp-showcase-card,
.lxp-legal-card {
    overflow: hidden;
    border: 1px solid rgba(7, 23, 45, 0.15);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.lxp-showcase-card:hover,
.lxp-legal-card:hover {
    transform: translateY(-5px);
    border-color: rgba(215, 170, 66, 0.55);
    box-shadow: 0 26px 55px rgba(15, 23, 42, 0.14);
}

.lxp-showcase-card-wide {
    grid-column: span 2;
}

.lxp-showcase-image,
.lxp-legal-image {
    position: relative;
    overflow: hidden;
    background: #e9eef5;
}

.lxp-showcase-image {
    aspect-ratio: 16 / 9;
}

.lxp-showcase-card-wide .lxp-showcase-image {
    aspect-ratio: 2.1 / 1;
}

.lxp-showcase-image img,
.lxp-legal-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.lxp-showcase-card:hover img,
.lxp-legal-card:hover img {
    transform: scale(1.018);
}

.lxp-showcase-content,
.lxp-legal-content {
    padding: 24px 25px 26px;
}

.lxp-showcase-content > span,
.lxp-legal-content > span {
    display: inline-flex;
    margin-bottom: 9px;
    color: var(--lxp-gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.lxp-showcase-content h3,
.lxp-legal-content h3 {
    margin: 0 0 10px;
    color: var(--lxp-navy);
    font-size: 23px;
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.lxp-showcase-content p,
.lxp-legal-content p {
    margin: 0;
    color: #5e6d84;
    font-size: 15px;
    line-height: 1.7;
}

.lxp-showcase-actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.lxp-legal-section {
    padding: 70px 0;
    background:
        radial-gradient(circle at 85% 10%, rgba(215, 170, 66, 0.11), transparent 28%),
        #ffffff;
}

.lxp-legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.lxp-legal-card-large {
    grid-column: span 2;
}

.lxp-legal-card-large .lxp-legal-image {
    aspect-ratio: 2.1 / 1;
}

.lxp-legal-card:not(.lxp-legal-card-large) .lxp-legal-image {
    aspect-ratio: 16 / 9;
}

.lxp-legal-note {
    margin-top: 26px;
    padding: 20px 22px;
    border: 1px solid rgba(215, 170, 66, 0.35);
    border-left: 5px solid var(--lxp-gold);
    border-radius: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(215, 170, 66, 0.07);
    color: #52627a;
    line-height: 1.65;
}

.lxp-legal-note strong {
    color: var(--lxp-navy);
}

.lxp-demo-image-frame {
    width: min(100%, 430px);
    border: 1px solid rgba(215, 170, 66, 0.30);
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.26);
    transform: rotate(1.5deg);
}

.lxp-demo-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1100px) {
    .lxp-real-app-frame {
        transform: none;
    }
}

@media (max-width: 860px) {
    .lxp-showcase-grid,
    .lxp-legal-grid {
        grid-template-columns: 1fr;
    }

    .lxp-showcase-card-wide,
    .lxp-legal-card-large {
        grid-column: auto;
    }

    .lxp-showcase-card-wide .lxp-showcase-image,
    .lxp-legal-card-large .lxp-legal-image {
        aspect-ratio: 16 / 9;
    }

    .lxp-demo-image-frame {
        width: 100%;
        transform: none;
    }
}

@media (max-width: 640px) {
    .lxp-showcase-section,
    .lxp-legal-section {
        padding: 50px 0;
    }

    .lxp-showcase-content,
    .lxp-legal-content {
        padding: 20px;
    }

    .lxp-showcase-content h3,
    .lxp-legal-content h3 {
        font-size: 20px;
    }

    .lxp-showcase-image,
    .lxp-showcase-card-wide .lxp-showcase-image,
    .lxp-legal-image,
    .lxp-legal-card-large .lxp-legal-image {
        aspect-ratio: 16 / 10;
    }

    .lxp-legal-note {
        display: block;
    }

    .lxp-legal-note strong {
        display: block;
        margin-bottom: 5px;
    }
}

/* =========================================================
   LEXMONITOR PUBLIC - COMPACT PRODUCT SCREENSHOTS
   ========================================================= */

/* Hero prikaz */

.lxp-hero-visual {
    width: 100%;
    max-width: 590px;
}

.lxp-real-app-frame {
    max-width: 590px;
    margin-left: auto;
}

.lxp-real-app-frame img {
    width: 100%;
    height: 365px;
    object-fit: cover;
    object-position: top left;
}


/* Sekcija prikaza aplikacije */

.lxp-showcase-section .lxp-container,
.lxp-legal-section .lxp-container {
    width: min(1060px, calc(100% - 40px));
}

.lxp-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.lxp-showcase-card-wide {
    grid-column: span 2;
}

.lxp-showcase-image,
.lxp-showcase-card-wide .lxp-showcase-image {
    height: 210px;
    aspect-ratio: auto;
}

.lxp-showcase-card-wide .lxp-showcase-image {
    height: 300px;
}

.lxp-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}

.lxp-showcase-content {
    padding: 19px 20px 21px;
}

.lxp-showcase-content h3 {
    font-size: 20px;
}

.lxp-showcase-content p {
    font-size: 14px;
    line-height: 1.6;
}


/* Propisi i AI */

.lxp-legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.lxp-legal-card-large {
    grid-column: span 2;
}

.lxp-legal-image,
.lxp-legal-card:not(.lxp-legal-card-large) .lxp-legal-image {
    height: 245px;
    aspect-ratio: auto;
}

.lxp-legal-card-large .lxp-legal-image {
    height: 330px;
    aspect-ratio: auto;
}

.lxp-legal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}

.lxp-legal-content {
    padding: 19px 20px 21px;
}

.lxp-legal-content h3 {
    font-size: 20px;
}


/* Demo završna slika */

.lxp-demo-image-frame {
    max-width: 360px;
}

.lxp-demo-image-frame img {
    height: 205px;
    object-fit: cover;
    object-position: top left;
}


/* Tablet */

@media (max-width: 980px) {
    .lxp-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lxp-showcase-card-wide {
        grid-column: span 2;
    }

    .lxp-showcase-image,
    .lxp-showcase-card-wide .lxp-showcase-image {
        height: 240px;
    }

    .lxp-real-app-frame img {
        height: auto;
    }
}


/* Mobilni */

@media (max-width: 700px) {
    .lxp-showcase-grid,
    .lxp-legal-grid {
        grid-template-columns: 1fr;
    }

    .lxp-showcase-card-wide,
    .lxp-legal-card-large {
        grid-column: auto;
    }

    .lxp-showcase-image,
    .lxp-showcase-card-wide .lxp-showcase-image,
    .lxp-legal-image,
    .lxp-legal-card-large .lxp-legal-image {
        height: 220px;
    }

    .lxp-real-app-frame {
        max-width: 100%;
    }

    .lxp-real-app-frame img {
        height: auto;
    }

    .lxp-demo-image-frame {
        max-width: 100%;
    }
}

.lxp-showcase-card:last-child {
    grid-column: span 3;
}

.lxp-showcase-card:last-child .lxp-showcase-image {
    height: 260px;
}

@media (max-width: 980px) {
    .lxp-showcase-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 700px) {
    .lxp-showcase-card:last-child {
        grid-column: auto;
    }

    .lxp-showcase-card:last-child .lxp-showcase-image {
        height: 220px;
    }
}

.lxp-showcase-actions {
    margin-top: 24px;
}

.lxp-showcase-section {
    padding-bottom: 54px;
}

.lxp-showcase-card {
    display: flex;
    flex-direction: column;
}

.lxp-showcase-content {
    flex: 1;
}

.lxp-demo-inner {
    min-height: 240px;
}

.lxp-contact-grid {
    align-items: center;
}

.lxp-legal-note {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
/* =========================================================
   LEXMONITOR PUBLIC - REAL FOOTER LOGO
   ========================================================= */

.lxp-footer-logo-real {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--lxp-gold-light);
}

.lxp-footer-logo-real::before {
    display: none;
}

.lxp-footer-logo-image {
    width: 54px;
    height: 54px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(215, 170, 66, 0.16));
}

.lxp-footer-wordmark {
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--lxp-gold-light);
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.lxp-footer-wordmark::before {
    display: none !important;
    content: none !important;
}

@media (max-width: 640px) {
    .lxp-footer-logo-image {
        width: 48px;
        height: 48px;
    }

    .lxp-footer-wordmark {
        font-size: 21px;
    }
}

/* =========================================================
   LEXMONITOR PUBLIC - PACKAGE PRODUCT PREVIEWS
   ========================================================= */

.lxp-package-hero-preview {
    position: relative;
    width: 100%;
    max-width: 610px;
    margin-left: auto;
}

.lxp-package-hero-screen {
    overflow: hidden;
    border: 1px solid rgba(215, 170, 66, 0.35);
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
    transform: rotateY(-3deg) rotateX(2deg);
}

.lxp-package-hero-screen img {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top left;
}

.lxp-package-hero-badge {
    position: absolute;
    right: 18px;
    bottom: -22px;
    min-width: 220px;
    padding: 16px 20px;
    border: 1px solid rgba(215, 170, 66, 0.48);
    border-radius: 13px;
    background:
        radial-gradient(circle at 80% 0%, rgba(215, 170, 66, 0.18), transparent 38%),
        linear-gradient(145deg, #061426, #07172d);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    color: #ffffff;
}

.lxp-package-hero-badge span,
.lxp-package-hero-badge strong,
.lxp-package-hero-badge em {
    display: block;
}

.lxp-package-hero-badge span {
    margin-bottom: 5px;
    color: var(--lxp-gold-light);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.lxp-package-hero-badge strong {
    color: #ffffff;
    font-size: 22px;
}

.lxp-package-hero-badge em {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-style: normal;
}

.lxp-package-preview-section {
    padding: 66px 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(215, 170, 66, 0.10), transparent 27%),
        #ffffff;
}

.lxp-package-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.lxp-package-preview-card {
    overflow: hidden;
    border: 1px solid rgba(7, 23, 45, 0.15);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
}

.lxp-package-preview-image {
    height: 260px;
    overflow: hidden;
    background: #e9eef5;
}

.lxp-package-preview-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top left;
}

.lxp-package-preview-content {
    padding: 22px 24px 25px;
}

.lxp-package-preview-content span {
    display: block;
    margin-bottom: 8px;
    color: var(--lxp-gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.lxp-package-preview-content h3 {
    margin: 0 0 9px;
    color: var(--lxp-navy);
    font-size: 22px;
    letter-spacing: -0.035em;
}

.lxp-package-preview-content p {
    margin: 0;
    color: #5e6d84;
    font-size: 14px;
    line-height: 1.65;
}

.lxp-package-demo-image {
    width: min(100%, 430px);
    overflow: hidden;
    border: 1px solid rgba(215, 170, 66, 0.30);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.26);
}

.lxp-package-demo-image img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    object-position: top left;
}

@media (max-width: 860px) {
    .lxp-package-hero-preview {
        max-width: 100%;
        margin-top: 18px;
    }

    .lxp-package-hero-screen {
        transform: none;
    }

    .lxp-package-hero-screen img {
        height: auto;
    }

    .lxp-package-hero-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 14px auto 0;
    }

    .lxp-package-preview-grid {
        grid-template-columns: 1fr;
    }

    .lxp-package-demo-image {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .lxp-package-preview-section {
        padding: 48px 0;
    }

    .lxp-package-preview-image {
        height: 215px;
    }
}

/* =========================================================
   LEXMONITOR PUBLIC - FINAL FOOTER LOGO FIX
   ========================================================= */

.lxp-footer .lxp-footer-logo-real {
    width: auto !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.lxp-footer .lxp-footer-logo-image {
    width: 58px !important;
    height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
    min-width: 58px !important;
    min-height: 58px !important;
    display: block !important;
    object-fit: contain !important;
    flex: 0 0 58px !important;
}

.lxp-footer .lxp-footer-wordmark {
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    display: inline !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--lxp-gold-light) !important;
    font-size: 23px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
}

.lxp-footer .lxp-footer-logo-real::before,
.lxp-footer .lxp-footer-logo-image::before,
.lxp-footer .lxp-footer-wordmark::before {
    display: none !important;
    content: none !important;
}

@media (max-width: 640px) {
    .lxp-footer .lxp-footer-logo-image {
        width: 50px !important;
        height: 50px !important;
        max-width: 50px !important;
        max-height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        flex-basis: 50px !important;
    }

    .lxp-footer .lxp-footer-wordmark {
        font-size: 21px !important;
    }
}

/* =========================================================
   LEXMONITOR PUBLIC - PREMIUM SHARED HEADER
   ========================================================= */

.lxp-premium-header {
    border-bottom: 1px solid rgba(215, 170, 66, 0.20);
    background:
        radial-gradient(
            circle at 14% -40%,
            rgba(215, 170, 66, 0.16),
            transparent 32%
        ),
        linear-gradient(
            90deg,
            rgba(6, 20, 38, 0.99),
            rgba(7, 23, 45, 0.99)
        );
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.lxp-premium-header-inner {
    min-height: 84px;
}

.lxp-premium-brand {
    min-width: 235px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.lxp-premium-brand-shield {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lxp-premium-brand-shield img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter:
        drop-shadow(0 8px 18px rgba(215, 170, 66, 0.16));
}

.lxp-premium-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.lxp-premium-brand-copy strong {
    color: var(--lxp-gold-light);
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.lxp-premium-brand-copy small {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lxp-premium-nav {
    gap: 6px;
}

.lxp-premium-nav a {
    position: relative;
    padding: 11px 13px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.lxp-premium-nav a:hover {
    color: var(--lxp-gold-light);
    background: rgba(255, 255, 255, 0.04);
}

.lxp-premium-nav a.active {
    color: var(--lxp-gold-light);
    background: rgba(215, 170, 66, 0.08);
}

.lxp-premium-nav a.active::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 4px;
    height: 1px;
    background: var(--lxp-gold);
    box-shadow: 0 0 9px rgba(215, 170, 66, 0.55);
}

.lxp-premium-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lxp-premium-login {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 800;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.lxp-premium-login:hover {
    color: var(--lxp-gold-light);
    background: rgba(255, 255, 255, 0.04);
}

.lxp-premium-demo {
    min-height: 44px;
    padding: 0 16px;
    gap: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lxp-premium-demo strong {
    color: var(--lxp-gold);
    font-size: 15px;
}


/* =========================================================
   LEXMONITOR PUBLIC - PREMIUM SHARED FOOTER
   ========================================================= */

.lxp-premium-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 13% 30%,
            rgba(215, 170, 66, 0.09),
            transparent 30%
        ),
        radial-gradient(
            circle at 86% 8%,
            rgba(245, 212, 119, 0.05),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #04101f,
            #07172d
        );
}

.lxp-premium-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.15;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
}

.lxp-premium-footer-glow {
    position: absolute;
    top: -180px;
    left: 8%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(215, 170, 66, 0.07);
    filter: blur(80px);
}

.lxp-premium-footer-grid {
    position: relative;
    z-index: 2;
    grid-template-columns: 1.55fr repeat(3, 0.8fr);
    gap: 56px;
    padding-top: 58px;
    padding-bottom: 52px;
}

.lxp-premium-footer-brand {
    max-width: 360px;
}

.lxp-premium-footer-brand .lxp-footer-logo-real {
    display: inline-flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.lxp-premium-footer-brand .lxp-footer-logo-image {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    max-width: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    flex: 0 0 70px !important;
}

.lxp-premium-footer-brand-copy {
    display: flex !important;
    flex-direction: column;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.lxp-premium-footer-brand-copy::before {
    display: none !important;
    content: none !important;
}

.lxp-premium-footer-brand-copy strong {
    color: var(--lxp-gold-light);
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.045em;
}

.lxp-premium-footer-brand-copy small {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lxp-premium-footer-brand > p {
    max-width: 330px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.75;
}

.lxp-premium-footer-status {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 700;
}

.lxp-premium-footer-status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2bd879;
    box-shadow: 0 0 12px rgba(43, 216, 121, 0.58);
}

.lxp-premium-footer-grid h4 {
    margin-bottom: 20px;
    color: var(--lxp-gold-light);
    font-size: 11px;
    letter-spacing: 0.14em;
}

.lxp-premium-footer-grid a:not(.lxp-footer-logo) {
    position: relative;
    margin-bottom: 11px;
    padding-left: 0;
    color: rgba(255, 255, 255, 0.66);
    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.lxp-premium-footer-grid a:not(.lxp-footer-logo):hover {
    padding-left: 7px;
    color: var(--lxp-gold-light);
}

.lxp-premium-footer-grid a:not(.lxp-footer-logo):hover::before {
    content: "›";
    position: absolute;
    left: -5px;
    color: var(--lxp-gold);
}

.lxp-premium-footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.45);
}

.lxp-premium-footer-bottom .lxp-container {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    font-size: 12px;
}

.lxp-premium-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.lxp-premium-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.48);
}

.lxp-premium-footer-bottom-links a:hover {
    color: var(--lxp-gold-light);
}


/* =========================================================
   PREMIUM HEADER / FOOTER RESPONSIVE
   ========================================================= */

@media (max-width: 1080px) {
    .lxp-premium-header-inner {
        flex-wrap: wrap;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .lxp-premium-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 3px;
    }

    .lxp-premium-nav a {
        white-space: nowrap;
    }

    .lxp-premium-footer-grid {
        grid-template-columns: 1.3fr repeat(3, 1fr);
        gap: 32px;
    }
}

@media (max-width: 780px) {
    .lxp-premium-brand-copy small {
        display: none;
    }

    .lxp-premium-login {
        display: none;
    }

    .lxp-premium-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lxp-premium-footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    .lxp-premium-brand {
        min-width: 0;
    }

    .lxp-premium-brand-shield {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .lxp-premium-brand-copy strong {
        font-size: 21px;
    }

    .lxp-premium-demo {
        min-height: 40px;
        padding: 0 12px;
        font-size: 12px;
    }

    .lxp-premium-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 44px;
        padding-bottom: 38px;
    }

    .lxp-premium-footer-brand {
        grid-column: auto;
    }

    .lxp-premium-footer-brand .lxp-footer-logo-image {
        width: 58px !important;
        height: 58px !important;
        min-width: 58px !important;
        max-width: 58px !important;
        min-height: 58px !important;
        max-height: 58px !important;
        flex-basis: 58px !important;
    }

    .lxp-premium-footer-brand-copy strong {
        font-size: 22px;
    }

    .lxp-premium-footer-bottom .lxp-container {
        padding-top: 18px;
        padding-bottom: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }
}

/* =========================================================
   LEXMONITOR PUBLIC - PREMIUM CONTENT PAGES
   ========================================================= */

.lxp-subpage-hero {
    position: relative;
    padding: 76px 0 78px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 16% 18%, rgba(215, 170, 66, 0.16), transparent 28%),
        radial-gradient(circle at 86% 10%, rgba(245, 212, 119, 0.07), transparent 24%),
        linear-gradient(135deg, #061426, #07172D);
}

.lxp-subpage-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -58% -10%;
    height: 400px;
    opacity: 0.2;
    background:
        repeating-radial-gradient(
            ellipse at center,
            rgba(215, 170, 66, 0.16) 0,
            rgba(215, 170, 66, 0.16) 1px,
            transparent 2px,
            transparent 20px
        );
    transform: rotate(-7deg);
}

.lxp-subpage-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 46px;
    align-items: center;
}

.lxp-subpage-hero-compact {
    padding: 72px 0;
    text-align: center;
}

.lxp-subpage-hero-compact .lxp-container {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.lxp-subpage-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--lxp-gold-light);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lxp-subpage-hero h1 {
    max-width: 760px;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(40px, 5.5vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.lxp-subpage-hero-compact h1 {
    margin-left: auto;
    margin-right: auto;
}

.lxp-subpage-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.75;
}

.lxp-subpage-hero-compact p {
    margin-left: auto;
    margin-right: auto;
}

.lxp-subpage-hero-image,
.lxp-subpage-visual-image {
    overflow: hidden;
    border: 1px solid rgba(215, 170, 66, 0.30);
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.lxp-subpage-hero-image {
    transform: rotateY(-3deg) rotateX(2deg);
}

.lxp-subpage-hero-image img,
.lxp-subpage-visual-image img {
    width: 100%;
    height: 360px;
    display: block;
    object-fit: cover;
    object-position: top left;
}

.lxp-subpage-section {
    padding: 70px 0;
    background: #f6f8fc;
}

.lxp-subpage-section-soft {
    background:
        radial-gradient(circle at 84% 10%, rgba(215, 170, 66, 0.08), transparent 28%),
        #ffffff;
}

.lxp-subpage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.lxp-subpage-card {
    min-height: 220px;
    padding: 26px 24px;
    border: 1px solid rgba(7, 23, 45, 0.14);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.lxp-subpage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(215, 170, 66, 0.48);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.13);
}

.lxp-subpage-card > span {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--lxp-gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.lxp-subpage-card h2 {
    margin: 0 0 11px;
    color: var(--lxp-navy);
    font-size: 21px;
    letter-spacing: -0.035em;
}

.lxp-subpage-card p {
    margin: 0;
    color: #5e6d84;
    font-size: 14px;
    line-height: 1.7;
}

.lxp-subpage-visual-section {
    padding: 72px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 10% 20%, rgba(215, 170, 66, 0.13), transparent 28%),
        linear-gradient(135deg, #061426, #07172D);
}

.lxp-subpage-visual-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 46px;
    align-items: center;
}

.lxp-subpage-visual-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.lxp-subpage-visual-copy p {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.75;
}

.lxp-reading-width {
    width: min(860px, calc(100% - 40px));
}

.lxp-content-block {
    margin-bottom: 24px;
    padding: 30px 32px;
    border: 1px solid rgba(7, 23, 45, 0.14);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.lxp-content-block h2 {
    margin: 0 0 12px;
    color: var(--lxp-navy);
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.lxp-content-block p {
    margin: 0;
    color: #5e6d84;
    font-size: 15px;
    line-height: 1.8;
}

.lxp-content-block-note {
    border-left: 5px solid var(--lxp-gold);
    background: #fffaf0;
}

.lxp-legal-reading .lxp-content-block {
    margin-bottom: 18px;
}

.lxp-policy-date {
    margin-top: 26px;
    padding: 16px 20px;
    border-radius: 10px;
    background: rgba(215, 170, 66, 0.10);
    color: var(--lxp-navy);
    font-size: 13px;
    font-weight: 800;
}

.lxp-faq-list {
    display: grid;
    gap: 14px;
}

.lxp-faq-item {
    border: 1px solid rgba(7, 23, 45, 0.14);
    border-radius: 13px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.lxp-faq-item summary {
    position: relative;
    padding: 21px 54px 21px 22px;
    cursor: pointer;
    list-style: none;
    color: var(--lxp-navy);
    font-size: 16px;
    font-weight: 900;
}

.lxp-faq-item summary::-webkit-details-marker {
    display: none;
}

.lxp-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    color: var(--lxp-gold);
    font-size: 24px;
    font-weight: 400;
}

.lxp-faq-item[open] summary::after {
    content: "−";
}

.lxp-faq-item p {
    margin: 0;
    padding: 0 22px 22px;
    color: #5e6d84;
    font-size: 14px;
    line-height: 1.75;
}

.lxp-subpage-support-panel {
    padding: 34px;
    border: 1px solid rgba(215, 170, 66, 0.26);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.lxp-subpage-support-panel span,
.lxp-subpage-support-panel strong,
.lxp-subpage-support-panel p {
    display: block;
}

.lxp-subpage-support-panel span {
    color: var(--lxp-gold-light);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lxp-subpage-support-panel strong {
    margin-top: 14px;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.25;
}

.lxp-subpage-support-panel p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.7;
}

.lxp-help-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.lxp-btn-outline-dark {
    border-color: var(--lxp-navy);
    color: var(--lxp-navy);
    background: transparent;
}

.lxp-btn-outline-dark:hover {
    color: #ffffff;
    background: var(--lxp-navy);
}

@media (max-width: 900px) {
    .lxp-subpage-hero-grid,
    .lxp-subpage-visual-grid {
        grid-template-columns: 1fr;
    }

    .lxp-subpage-hero-image {
        transform: none;
    }

    .lxp-subpage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .lxp-subpage-hero,
    .lxp-subpage-hero-compact {
        padding: 54px 0;
    }

    .lxp-subpage-hero h1 {
        font-size: 40px;
    }

    .lxp-subpage-hero p {
        font-size: 15px;
    }

    .lxp-subpage-hero-image img,
    .lxp-subpage-visual-image img {
        height: 230px;
    }

    .lxp-subpage-section,
    .lxp-subpage-visual-section {
        padding: 50px 0;
    }

    .lxp-subpage-grid {
        grid-template-columns: 1fr;
    }

    .lxp-subpage-card {
        min-height: auto;
    }

    .lxp-content-block {
        padding: 24px 22px;
    }

    .lxp-content-block h2 {
        font-size: 22px;
    }

    .lxp-help-actions {
        flex-direction: column;
    }

    .lxp-help-actions .lxp-btn {
        width: 100%;
    }
}

/* =========================================================
   LEXMONITOR PUBLIC - PREMIUM HEADER PILLS FINAL
   ========================================================= */

.lxp-premium-header-inner {
    min-height: 82px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 18px !important;
}

.lxp-premium-brand {
    min-width: 285px !important;
    flex: 0 0 285px !important;
}

.lxp-premium-nav {
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    overflow: visible !important;
    padding: 0 !important;
}

.lxp-premium-nav a {
    min-height: 40px !important;
    padding: 0 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    background: rgba(255, 255, 255, 0.025) !important;
    color: rgba(255, 255, 255, 0.74) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease !important;
}

.lxp-premium-nav a:hover {
    color: var(--lxp-gold-light) !important;
    border-color: rgba(215, 170, 66, 0.34) !important;
    background: rgba(215, 170, 66, 0.08) !important;
    transform: translateY(-1px);
}

.lxp-premium-nav a.active {
    color: #07172d !important;
    border-color: var(--lxp-gold) !important;
    background:
        linear-gradient(
            135deg,
            var(--lxp-gold),
            var(--lxp-gold-light)
        ) !important;
    box-shadow:
        0 8px 20px rgba(215, 170, 66, 0.18) !important;
}

.lxp-premium-nav a.active::after {
    display: none !important;
    content: none !important;
}

.lxp-premium-header-actions {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
}

.lxp-premium-login {
    min-height: 40px !important;
    padding: 0 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.025) !important;
    white-space: nowrap !important;
}

.lxp-premium-login:hover {
    border-color: rgba(215, 170, 66, 0.34) !important;
    background: rgba(215, 170, 66, 0.08) !important;
}

.lxp-premium-demo {
    min-height: 42px !important;
    padding: 0 17px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
}

/* Srednji ekrani */
@media (max-width: 1260px) {
    .lxp-premium-brand {
        min-width: 230px !important;
        flex-basis: 230px !important;
    }

    .lxp-premium-brand-copy small {
        display: none !important;
    }

    .lxp-premium-nav {
        gap: 6px !important;
    }

    .lxp-premium-nav a {
        padding: 0 11px !important;
        font-size: 11px !important;
    }

    .lxp-premium-login {
        padding: 0 11px !important;
        font-size: 12px !important;
    }

    .lxp-premium-demo {
        padding: 0 13px !important;
        font-size: 12px !important;
    }
}

/* Tablet */
@media (max-width: 1050px) {
    .lxp-premium-header-inner {
        flex-wrap: wrap !important;
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .lxp-premium-nav {
        order: 3 !important;
        width: 100% !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding-bottom: 3px !important;
        scrollbar-width: none;
    }

    .lxp-premium-nav::-webkit-scrollbar {
        display: none;
    }
}

/* =========================================================
   LEXMONITOR PUBLIC - PREMIUM FOOTER CTA + META
   ========================================================= */

.lxp-footer-cta-wrap {
    position: relative;
    z-index: 2;
    padding: 0 0 34px;
}

.lxp-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 28px 30px;
    border: 1px solid rgba(215, 170, 66, 0.26);
    border-radius: 16px;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(215, 170, 66, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 44px rgba(0, 0, 0, 0.18);
}

.lxp-footer-cta-copy span {
    display: block;
    margin-bottom: 8px;
    color: var(--lxp-gold-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lxp-footer-cta-copy strong {
    display: block;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.lxp-footer-cta-copy p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.lxp-footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.lxp-footer-cta-primary,
.lxp-footer-cta-secondary {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 900;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.lxp-footer-cta-primary {
    color: #07172d;
    background:
        linear-gradient(
            135deg,
            var(--lxp-gold),
            var(--lxp-gold-light)
        );
    box-shadow: 0 12px 28px rgba(215, 170, 66, 0.18);
}

.lxp-footer-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.025);
}

.lxp-footer-cta-primary:hover,
.lxp-footer-cta-secondary:hover {
    transform: translateY(-2px);
}

.lxp-footer-cta-secondary:hover {
    border-color: rgba(215, 170, 66, 0.36);
    color: var(--lxp-gold-light);
    background: rgba(215, 170, 66, 0.07);
}

.lxp-footer-meta {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.09);
}

.lxp-footer-meta-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.lxp-footer-meta-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.lxp-footer-meta-pills > span {
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.025);
    font-size: 11px;
    font-weight: 800;
}

.lxp-footer-meta-pills i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2bd879;
    box-shadow: 0 0 12px rgba(43, 216, 121, 0.55);
}

.lxp-footer-meta-pills b {
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    border: 1px solid rgba(215, 170, 66, 0.34);
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lxp-gold-light);
    font-size: 9px;
    letter-spacing: 0.04em;
}

.lxp-footer-meta-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lxp-footer-meta-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.54);
    font-size: 12px;
    font-weight: 700;
}

.lxp-footer-meta-links a:hover {
    color: var(--lxp-gold-light);
}

.lxp-footer-meta-links a + a::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(215, 170, 66, 0.55);
    transform: translateY(-50%);
}

.lxp-premium-footer-bottom {
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.012),
            rgba(215, 170, 66, 0.025),
            rgba(255, 255, 255, 0.012)
        );
}

.lxp-premium-footer-bottom .lxp-container {
    min-height: 66px;
}

.lxp-footer-signature {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.36);
    font-size: 11px;
}

.lxp-footer-signature::before {
    content: "";
    width: 28px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--lxp-gold)
        );
}

.lxp-footer-signature strong {
    color: rgba(255, 255, 255, 0.54);
    font-size: 9px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

@media (max-width: 820px) {
    .lxp-footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .lxp-footer-meta-inner {
        padding-top: 18px;
        padding-bottom: 18px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .lxp-footer-cta {
        padding: 24px 22px;
    }

    .lxp-footer-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .lxp-footer-cta-primary,
    .lxp-footer-cta-secondary {
        width: 100%;
    }

    .lxp-footer-meta-links {
        flex-wrap: wrap;
        gap: 12px;
    }

    .lxp-footer-meta-links a + a::before {
        display: none;
    }

    .lxp-footer-signature {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .lxp-footer-signature::before {
        display: none;
    }
}

/* FINAL FOOTER POLISH */

.lxp-footer-cta {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.lxp-footer-cta-secondary {
    border-color: rgba(215, 170, 66, 0.28) !important;
    color: rgba(255, 255, 255, 0.88) !important;
    background: rgba(215, 170, 66, 0.04) !important;
}

.lxp-footer-cta-secondary:hover {
    border-color: rgba(215, 170, 66, 0.55) !important;
    background: rgba(215, 170, 66, 0.09) !important;
}

.lxp-premium-footer-bottom {
    border-top: 1px solid rgba(215, 170, 66, 0.08) !important;
}

.lxp-premium-footer-bottom .lxp-container {
    min-height: 60px !important;
}

.lxp-premium-footer-bottom,
.lxp-premium-footer-bottom a,
.lxp-footer-signature {
    color: rgba(255, 255, 255, 0.52) !important;
}

/* =========================================================
   LEXMONITOR PUBLIC - MERGED PREMIUM FOOTER
   ========================================================= */

.lxp-premium-footer {
    padding-top: 42px;
}

.lxp-footer-cta-merged {
    display: grid !important;
    grid-template-columns: 0.9fr 1.35fr auto;
    align-items: center !important;
    gap: 38px !important;
    padding: 30px 34px !important;
}

.lxp-footer-cta-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.lxp-footer-cta-brand .lxp-footer-logo-real {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.lxp-footer-cta-brand .lxp-footer-logo-image {
    width: 66px !important;
    height: 66px !important;
    min-width: 66px !important;
    max-width: 66px !important;
    min-height: 66px !important;
    max-height: 66px !important;
    flex: 0 0 66px !important;
}

.lxp-footer-cta-brand .lxp-premium-footer-status {
    margin-top: 0 !important;
}

.lxp-premium-footer-grid-links {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    gap: 80px !important;
    padding-top: 44px !important;
    padding-bottom: 44px !important;
}

.lxp-footer-cta-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
}

.lxp-footer-cta-primary,
.lxp-footer-cta-secondary {
    min-width: 154px !important;
    min-height: 46px !important;
    padding: 0 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
}

.lxp-footer-btn-label {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.lxp-footer-btn-arrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.lxp-footer-meta-pills {
    gap: 10px !important;
}

@media (max-width: 1050px) {
    .lxp-footer-cta-merged {
        grid-template-columns: 1fr 1.35fr !important;
    }

    .lxp-footer-cta-actions {
        grid-column: 1 / -1;
        justify-content: flex-start !important;
    }
}

@media (max-width: 760px) {
    .lxp-footer-cta-merged {
        grid-template-columns: 1fr !important;
    }

    .lxp-footer-cta-actions {
        grid-column: auto;
        width: 100%;
        flex-direction: column;
    }

    .lxp-footer-cta-primary,
    .lxp-footer-cta-secondary {
        width: 100% !important;
    }

    .lxp-premium-footer-grid-links {
        grid-template-columns: 1fr !important;
        max-width: none;
        gap: 28px !important;
    }
}

/* =========================================================
   LEXMONITOR PUBLIC - MERGED PREMIUM FOOTER
   ========================================================= */

.lxp-premium-footer {
    padding-top: 42px;
}

.lxp-footer-cta-merged {
    display: grid !important;
    grid-template-columns: 0.9fr 1.35fr auto;
    align-items: center !important;
    gap: 38px !important;
    padding: 30px 34px !important;
}

.lxp-footer-cta-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.lxp-footer-cta-brand .lxp-footer-logo-real {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.lxp-footer-cta-brand .lxp-footer-logo-image {
    width: 66px !important;
    height: 66px !important;
    min-width: 66px !important;
    max-width: 66px !important;
    min-height: 66px !important;
    max-height: 66px !important;
    flex: 0 0 66px !important;
}

.lxp-footer-cta-brand .lxp-premium-footer-status {
    margin-top: 0 !important;
}

.lxp-premium-footer-grid-links {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    gap: 80px !important;
    padding-top: 44px !important;
    padding-bottom: 44px !important;
}

.lxp-footer-cta-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
}

.lxp-footer-cta-primary,
.lxp-footer-cta-secondary {
    min-width: 154px !important;
    min-height: 46px !important;
    padding: 0 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
}

.lxp-footer-btn-label {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.lxp-footer-btn-arrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.lxp-footer-meta-pills {
    gap: 10px !important;
}

@media (max-width: 1050px) {
    .lxp-footer-cta-merged {
        grid-template-columns: 1fr 1.35fr !important;
    }

    .lxp-footer-cta-actions {
        grid-column: 1 / -1;
        justify-content: flex-start !important;
    }
}

@media (max-width: 760px) {
    .lxp-footer-cta-merged {
        grid-template-columns: 1fr !important;
    }

    .lxp-footer-cta-actions {
        grid-column: auto;
        width: 100%;
        flex-direction: column;
    }

    .lxp-footer-cta-primary,
    .lxp-footer-cta-secondary {
        width: 100% !important;
    }

    .lxp-premium-footer-grid-links {
        grid-template-columns: 1fr !important;
        max-width: none;
        gap: 28px !important;
    }
}

/* =========================================================
   HOME FEATURE GRID — 3 + 3
   ========================================================= */

#product .lxp-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

#product .lxp-feature-card {
    min-height: 270px;
}

@media (max-width: 900px) {
    #product .lxp-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 620px) {
    #product .lxp-feature-grid {
        grid-template-columns: 1fr !important;
    }

    #product .lxp-feature-card {
        min-height: auto;
    }
}

/* =========================================================
   HOME FEATURE CARDS — COMPACT HEIGHT
   ========================================================= */

#product .lxp-feature-card {
    min-height: 210px !important;
    padding: 24px 24px 22px !important;
}

#product .lxp-feature-card .lxp-icon {
    margin-bottom: 16px !important;
}

#product .lxp-feature-card h3 {
    margin-bottom: 10px !important;
}

#product .lxp-feature-card p {
    margin-bottom: 0 !important;
    line-height: 1.6 !important;
}

/* =========================================================
   FINAL MOBILE AUDIT FIX — HERO + HEADER
   ========================================================= */

@media (max-width: 1050px) {
    .lxp-hero-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 34px !important;
    }

    .lxp-hero-content,
    .lxp-hero-visual {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .lxp-hero-visual {
        justify-self: stretch !important;
    }

    .lxp-real-app-frame {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        transform: none !important;
    }

    .lxp-real-app-frame img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: top left !important;
    }
}

@media (max-width: 520px) {
    .lxp-premium-header-inner {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .lxp-premium-brand {
        min-width: 0 !important;
        width: auto !important;
        flex: 0 1 auto !important;
    }

    .lxp-premium-header-actions {
        flex: 0 0 auto !important;
        margin-left: auto !important;
    }

    .lxp-premium-demo {
        min-height: 40px !important;
        padding: 0 13px !important;
        font-size: 12px !important;
    }

    .lxp-premium-nav {
        order: 3 !important;
        flex: 0 0 100% !important;
        width: 100% !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding-bottom: 3px !important;
    }

    .lxp-hero {
        padding-top: 48px !important;
    }

    .lxp-hero h1 {
        font-size: clamp(48px, 15vw, 58px) !important;
    }

    .lxp-hero h2 {
        font-size: 31px !important;
        line-height: 1.14 !important;
    }

    .lxp-hero-visual {
        margin-top: 4px !important;
    }
}
