/* Block: LogoGen Licenses */

.logogen-licenses-section {
    width: 100%;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 1.5rem !important; /* Force override Tailwind */
    box-sizing: border-box;
    background-color: #000000;
    position: relative;
    overflow: hidden;
    --lg-font-body: 'Inter', sans-serif;
    --lg-font-heading: 'Space Grotesk', sans-serif;
    font-family: var(--lg-font-body);
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .logogen-licenses-section {
        padding: 4rem 1rem !important;
        min-height: auto;
    }
}

.logogen-licenses-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.logogen-licenses-header__title {
    font-family: var(--lg-font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    color: #FFFFFF;
}

.logogen-licenses-header__description {
    max-width: 700px;
    margin-top: 1.25rem;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-weight: 300;
}

.logogen-licenses-section h1,
.logogen-licenses-section h2,
.logogen-licenses-section .font-heading {
    font-family: var(--lg-font-heading);
}

.logogen-licenses-section .lg-licenses-title-highlight {
    background: linear-gradient(90deg, #ffffff 0%, #c0ff00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 500 !important;
}

.ambient-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb-neon {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(192, 255, 0, 0.12) 0%, rgba(0,0,0,0) 70%);
    filter: blur(100px);
    animation: float 25s ease-in-out infinite alternate;
}

.orb-white {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(0,0,0,0) 70%);
    filter: blur(120px);
    animation: float 30s ease-in-out infinite alternate-reverse;
}

.reveal {
    opacity: 0;
    animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-delayed {
    opacity: 0;
    animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.glass-panel {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2.5rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
}

.glass-panel .spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(400px circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.06), transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.btn-glass {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9999px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
}

.glass-panel-extended {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(192,255,0,0.15);
    border-radius: 2.5rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
    overflow: hidden;
    transition: all 0.5s ease;
}

.glass-panel-extended .spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(400px circle at var(--x, 50%) var(--y, 50%), rgba(192,255,0,0.08), transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.badge-extended { background-color: #C0FF00; }

/* Border negru setat din CSS de asemenea */
.saas-engine-box { background: rgba(192,255,0,0.1); border-color: #000000; color: #C0FF00; }
.pulse-neon { background-color: #C0FF00; }

/* Border negru setat din CSS de asemenea */
.roi-box { background: rgba(192,255,0,0.05); border: 1px solid #000000; }
.roi-box svg, .roi-box span, .roi-icon { color: #C0FF00; }

.ext-feature-card { transition: all 0.4s ease; }
.ext-feature-icon-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); transition: all 0.4s ease; }
.ext-feature-icon { color: #9CA3AF; transition: color 0.3s ease; }
.ext-feature-text { color: #D1D5DB; }

.btn-neon {
    background-color: #C0FF00;
    color: #000000 !important;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, 5%) scale(1.1); }
}
@keyframes revealUp {
    0% { opacity: 0; transform: translateY(30px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes sweep {
    0% { left: -100%; }
    20%, 100% { left: 200%; }
}

.btn-neon::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-20deg);
    animation: sweep 4s infinite;
}

.glass-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6), 0 0 80px rgba(192, 255, 0, 0.1);
}

.glass-panel-extended:hover {
    transform: translateY(-8px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6), 0 0 80px rgba(192, 255, 0, 0.1), inset 0 1px 0 rgba(192, 255, 0, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Forțare ca fontul să rămână absolut NEGRU (#000000) la hover */
.btn-neon:hover {
    color: #000000 !important;
    transform: scale(1.02);
    box-shadow: 0 10px 30px -10px rgba(192, 255, 0, 0.6);
}

.ext-feature-card:hover {
    background: #0a0a0a;
    border-color: #000000;
    transform: translateX(6px);
}
.ext-feature-card:hover .ext-feature-icon-box {
    background: rgba(192, 255, 0, 0.15);
    border-color: rgba(192, 255, 0, 0.4);
    transform: scale(1.1) rotate(5deg);
}
.ext-feature-card:hover .ext-feature-icon {
    color: #C0FF00;
}

/* ====================================================
   PERFECT MOBILE RESPONSIVENESS FOR LICENSES BLOCK
   ==================================================== */

@media (max-width: 768px) {
    .logogen-licenses-section {
        padding: 3rem 1rem !important;
    }
    .logogen-licenses-header__title {
        font-size: 2.25rem;
    }
    .glass-panel, .glass-panel-extended {
        padding: 1.5rem !important;
        border-radius: 1.5rem;
    }
}

/* Mobile / tablet: horizontal swipe between Regular & Extended (same as Pricing cards on small screens) */
.logogen-licenses__dots {
    display: none;
}

.logogen-licenses-section .logogen-licenses__slide--extended {
    overflow: visible;
}

.logogen-licenses-section .logogen-licenses-badge-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    margin: 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 70;
}

.logogen-licenses-section .logogen-licenses-badge-wrap .badge-extended {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    white-space: nowrap;
}

@media (max-width: 1023.98px) {
    .logogen-licenses-section > .w-full {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .logogen-licenses-section .logogen-licenses__track {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-padding-left: 0;
        scroll-padding-right: 0;
        padding-top: 22px;
        padding-bottom: 0.5rem;
        margin-left: 0 !important;
        margin-right: -0.9rem !important;
        padding-left: 0 !important;
        padding-right: 0.9rem !important;
        scrollbar-width: none;
        cursor: grab;
    }

    .logogen-licenses-section .logogen-licenses__track::-webkit-scrollbar {
        display: none;
    }

    .logogen-licenses-section .logogen-licenses__track:active {
        cursor: grabbing;
    }

    .logogen-licenses-section .logogen-licenses__track.is-vertical-scrolling {
        overflow-x: hidden !important;
    }

    .logogen-licenses-section .logogen-licenses__track > .logogen-licenses__slide {
        flex: 0 0 clamp(260px, 70vw, 420px) !important;
        width: clamp(260px, 70vw, 420px) !important;
        max-width: clamp(260px, 70vw, 420px) !important;
        scroll-snap-align: start;
        display: flex !important;
    }

    .logogen-licenses-section .logogen-licenses__track > .logogen-licenses__slide:first-child {
        flex: 0 0 clamp(260px, 70vw, 420px) !important;
        width: clamp(260px, 70vw, 420px) !important;
        max-width: clamp(260px, 70vw, 420px) !important;
        align-self: flex-start !important;
    }

    .logogen-licenses-section .glass-panel {
        padding: 0.9rem !important;
        border-radius: 1.1rem !important;
    }

    .logogen-licenses-section .glass-panel-extended {
        padding: 0.9rem !important;
        border-radius: 1.1rem !important;
    }

    .logogen-licenses-section .logogen-licenses__slide .glass-panel,
    .logogen-licenses-section .logogen-licenses__slide .glass-panel-extended {
        width: 100% !important;
        min-height: auto !important;
        aspect-ratio: 1.14 / 1;
        display: flex;
        flex-direction: column;
    }

    .logogen-licenses-section .logogen-licenses__slide .glass-panel.is-features-open {
        aspect-ratio: auto !important;
        height: auto !important;
        align-self: flex-start;
    }

    .logogen-licenses-section .logogen-licenses__slide .glass-panel-extended.is-features-open {
        aspect-ratio: auto !important;
        height: auto !important;
    }

    .logogen-licenses-section .logogen-licenses__slide .glass-panel > div:last-child,
    .logogen-licenses-section .logogen-licenses__slide .glass-panel-extended > div:last-child {
        margin-top: 0 !important;
    }

    .logogen-licenses-section .lg-license-features-content {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        flex-grow: 0;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        transition: max-height 0.34s ease, opacity 0.24s ease;
    }

    .logogen-licenses-section .lg-license-features-content.is-open {
        max-height: 5000px;
        opacity: 1;
        pointer-events: auto;
    }

    .logogen-licenses-section .glass-panel .lg-license-features-content.is-open {
        max-height: 5000px;
        overflow-y: visible;
    }

    .logogen-licenses-section .lg-license-toggle.is-open svg {
        transform: rotate(180deg);
    }

    .logogen-licenses-section .glass-panel .mb-2,
    .logogen-licenses-section .glass-panel-extended .mb-2 {
        margin-bottom: 0.35rem !important;
        padding-bottom: 0.35rem !important;
    }

    .logogen-licenses-section .glass-panel .mt-0,
    .logogen-licenses-section .glass-panel-extended .mt-0 {
        margin-top: 0 !important;
        padding-top: 0.55rem !important;
    }

    .logogen-licenses-section .glass-panel .mt-0.md\:mt-12,
    .logogen-licenses-section .glass-panel-extended .mt-0.md\:mt-auto {
        margin-top: 0 !important;
        padding-top: 0.55rem !important;
    }

    .logogen-licenses-section .glass-panel .lg-license-toggle,
    .logogen-licenses-section .glass-panel-extended .lg-license-toggle {
        margin-top: 0.35rem !important;
        margin-bottom: 0 !important;
        padding-top: 0.55rem !important;
        padding-bottom: 0.55rem !important;
        background: transparent !important;
        color: #ffffff !important;
        box-shadow: none !important;
        border-color: transparent !important;
    }

    .logogen-licenses-section .glass-panel .lg-license-toggle:hover,
    .logogen-licenses-section .glass-panel-extended .lg-license-toggle:hover,
    .logogen-licenses-section .glass-panel .lg-license-toggle:focus-visible,
    .logogen-licenses-section .glass-panel-extended .lg-license-toggle:focus-visible {
        background: transparent !important;
        color: #C0FF00 !important;
        box-shadow: none !important;
    }

    .logogen-licenses-section .glass-panel .lg-regular-footer {
        margin-top: auto !important;
        padding-top: 0.55rem !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .logogen-licenses-section .glass-panel .btn-glass {
        padding-top: 0.56rem !important;
        padding-bottom: 0.56rem !important;
        font-size: 0.76rem !important;
        line-height: 1.2 !important;
        color: #ffffff !important;
    }

    .logogen-licenses-section .glass-panel:not(.is-features-open) .lg-regular-footer {
        margin-top: auto !important;
        padding-top: 0.35rem !important;
    }

    .logogen-licenses-section .glass-panel:not(.is-features-open) .lg-regular-footer__meta {
        margin-bottom: 0.2rem !important;
    }

    .logogen-licenses-section .glass-panel-extended:not(.is-features-open) > div:last-child {
        margin-top: 0.45rem !important;
        padding-top: 0.45rem !important;
    }

    .logogen-licenses__dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-bottom: 0.25rem;
    }

    .logogen-licenses__dot {
        width: 8px;
        height: 8px;
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.22);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    }

    .logogen-licenses__dot.is-active {
        background: #C0FF00;
        transform: scale(1.35);
        box-shadow: 0 0 12px rgba(192, 255, 0, 0.45);
    }

    .logogen-licenses__dot:focus-visible {
        outline: 2px solid #C0FF00;
        outline-offset: 3px;
    }
}

@media (max-width: 767.98px) {
    .logogen-licenses-section .logogen-licenses__slide .glass-panel {
        min-height: auto !important;
        display: flex;
        flex-direction: column;
    }

    .logogen-licenses-section .logogen-licenses__slide .glass-panel-extended {
        min-height: auto !important;
        display: flex;
        flex-direction: column;
    }

    .logogen-licenses-section .glass-panel .mt-0.md\:mt-12 {
        padding-top: 0.55rem !important;
    }

    .logogen-licenses-section .glass-panel .lg-regular-footer {
        margin-top: auto !important;
        padding-top: 0.55rem !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .logogen-licenses-section .glass-panel .btn-glass {
        margin-bottom: 0 !important;
        position: relative;
        top: 5px;
    }

    .logogen-licenses-section .glass-panel .mb-2,
    .logogen-licenses-section .glass-panel-extended .mb-2 {
        margin-bottom: 0.2rem !important;
        padding-bottom: 0.2rem !important;
    }

    .logogen-licenses-section .logogen-licenses__slide {
        overflow: visible !important;
    }
}

@media (min-width: 1024px) {
    .logogen-licenses-section .lg-license-features-content {
        max-height: none !important;
        opacity: 1 !important;
        overflow: visible !important;
        pointer-events: auto !important;
    }
}

/* ====================================================
   PRICING CARDS OVERRIDES (QZ PRICING)
   Appended from licenses block by request
   ==================================================== */

.lg-pricing .qz-plan-card {
    position: relative;
    overflow: visible;
}

.lg-pricing .qz-plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.24s ease;
    background: radial-gradient(
        280px circle at var(--x, 50%) var(--y, 50%),
        rgba(192, 255, 0, 0.22),
        transparent 78%
    );
}

.lg-pricing .qz-plan-card:hover::before,
.lg-pricing .qz-plan-card:focus-within::before {
    opacity: 1;
}

.lg-pricing .qz-plan-card > * {
    position: relative;
    z-index: 1;
}

/* Most Popular badge */
.lg-pricing .qz-popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    background: #c0ff00 !important;
    color: #000000 !important;
    border: 1px solid rgba(0, 0, 0, 0.18);
}

/* Keep original placement/size behavior for top badge */
.lg-pricing .qz-plan-card.qz-popular {
    overflow: visible;
}

.lg-pricing .qz-plan-card .qz-feature-item.qz-mobile-extra-feature {
    display: flex;
}

.lg-pricing .qz-mobile-toggle-features {
    display: none;
}

.lg-pricing .qz-mobile-dots {
    display: none;
}

/* Billing labels always visible with strong active state */
.lg-pricing .qz-toggle-label {
    color: rgba(255, 255, 255, 0.58);
    font-weight: 500;
}

.lg-pricing .qz-toggle-label.active {
    color: #ffffff;
    font-weight: 700;
}

.lg-pricing .qz-toggle-track {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.lg-pricing .qz-toggle-track .qz-toggle-thumb {
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.45);
}

.lg-pricing .qz-toggle-track.annual {
    background: rgba(192, 255, 0, 0.25);
    border-color: rgba(192, 255, 0, 0.7);
}

.lg-pricing .qz-toggle-track.annual .qz-toggle-thumb {
    background: #c0ff00;
}

/* Mobile: premium horizontal peeking cards + compact content */
@media (max-width: 991.98px) {
    .lg-pricing,
    .lg-pricing .lg-container,
    .lg-pricing .logogenai-pricing-wrap,
    .lg-pricing .qz-pricing {
        width: 100% !important;
        max-width: none !important;
    }

    .lg-pricing .lg-container,
    .lg-pricing .qz-pricing {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .lg-pricing .qz-pricing {
        overflow-x: hidden;
        overflow-y: visible;
    }

    .lg-pricing .qz-plans-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: flex-start;
        gap: 0.9rem;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        scroll-padding-left: 0;
        padding-top: 1.8rem;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 0.35rem;
        margin-top: -0.7rem;
    }

    .lg-pricing .qz-plans-grid::-webkit-scrollbar {
        display: none;
    }

    .lg-pricing .qz-plan-card {
        flex: 0 0 76%;
        width: 76%;
        max-width: 76%;
        min-width: 76%;
        scroll-snap-align: start;
        min-height: 0;
        height: auto;
        max-height: none;
        padding: 1rem;
        border-radius: 16px;
    }

    .lg-pricing .qz-plan-card:first-child {
        margin-left: 0;
    }

    /* Keep core info visible */
    .lg-pricing .qz-plan-name,
    .lg-pricing .qz-price-row,
    .lg-pricing .qz-plan-cta,
    .lg-pricing .qz-cta-current {
        display: block;
    }

    /* Compact mobile content */
    .lg-pricing .qz-plan-desc,
    .lg-pricing .qz-price-note {
        display: none !important;
    }

    .lg-pricing .qz-features-title {
        margin-top: 0.9rem;
        margin-bottom: 0.5rem;
        font-size: 0.74rem;
    }

    .lg-pricing .qz-feature-item {
        margin-bottom: 0.42rem;
    }

    .lg-pricing .qz-plan-card .qz-feature-item.qz-mobile-extra-feature {
        display: none;
    }

    .lg-pricing .qz-plan-card.qz-mobile-expanded .qz-feature-item.qz-mobile-extra-feature {
        display: flex;
    }

    .lg-pricing .qz-mobile-toggle-features {
        display: inline-flex;
        margin-top: 0.25rem;
        width: auto;
        border: 0;
        background: transparent;
        color: rgba(255, 255, 255, 0.72);
        border-radius: 0;
        padding: 0.15rem 0;
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        text-decoration: underline;
        text-underline-offset: 0.2em;
        transition: color 0.2s ease, opacity 0.2s ease;
    }

    .lg-pricing .qz-mobile-toggle-features:hover,
    .lg-pricing .qz-mobile-toggle-features:focus-visible {
        background: transparent;
        color: #c0ff00;
        outline: none;
    }

    .lg-pricing .qz-mobile-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-bottom: 0.25rem;
    }

    .lg-pricing .qz-mobile-dot {
        width: 8px;
        height: 8px;
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.22);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    }

    .lg-pricing .qz-mobile-dot.is-active {
        background: #c0ff00;
        transform: scale(1.35);
        box-shadow: 0 0 12px rgba(192, 255, 0, 0.45);
    }

    .lg-pricing .qz-mobile-dot:focus-visible {
        outline: 2px solid #c0ff00;
        outline-offset: 3px;
    }
}

/* Tablet only: snap offset so first card is never flush against the left edge */
@media (min-width: 768px) and (max-width: 1023.98px) {
    .lg-pricing .qz-plans-grid {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        scroll-padding-left: 1.25rem !important;
    }

    .lg-pricing .qz-plan-card:first-child {
        margin-left: 0 !important;
    }
}

@media (max-width: 1023.98px) {
    .logogen-licenses-section .logogen-licenses__slide--extended .glass-panel-extended h2 {
        font-size: 1.45rem !important;
        line-height: 1.12 !important;
        margin-bottom: 0.3rem !important;
    }

    .logogen-licenses-section .logogen-licenses__slide--extended .glass-panel-extended .text-6xl.md\:text-7xl {
        font-size: 2.1rem !important;
        line-height: 1.02 !important;
        margin-top: 0 !important;
        margin-bottom: 0.35rem !important;
    }

    .logogen-licenses-section .logogen-licenses__slide--extended .glass-panel-extended > div:last-child {
        margin-top: auto !important;
        padding-top: 0.55rem !important;
    }

    .logogen-licenses-section .logogen-licenses__slide--extended .glass-panel-extended .btn-neon {
        display: block !important;
        width: 100% !important;
        padding-top: 0.7rem !important;
        padding-bottom: 0.7rem !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.08em !important;
        position: relative;
        top: -20px;
    }
}

/* ====================================================
   QZ TYPOGRAPHY ALIGNMENT (FAQ font combo)
   Body: Inter | Heading/price/CTA: Space Grotesk
   ==================================================== */
.lg-pricing .qz-pricing,
.lg-pricing .qz-pricing * {
    font-family: 'Inter', sans-serif !important;
}

.lg-pricing .qz-pricing-header h2,
.lg-pricing .qz-plan-name,
.lg-pricing .qz-price-amount,
.lg-pricing .qz-price-currency,
.lg-pricing .qz-price-period,
.lg-pricing .qz-price-original,
.lg-pricing .qz-plan-cta,
.lg-pricing .qz-cta-current,
.lg-pricing .qz-popular-tag,
.lg-pricing .qz-toggle-label {
    font-family: 'Space Grotesk', sans-serif !important;
}

.lg-pricing .qz-pricing-header h2 {
    font-size: clamp(2.6rem, 6vw, 4.4rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em !important;
    font-weight: 300 !important;
}

/* QZ section base background + title accent */
.lg-pricing {
    background: #000000 !important;
}

.lg-pricing .qz-pricing,
.lg-pricing .logogenai-pricing-wrap {
    background: transparent !important;
}

.lg-pricing .qz-pricing-header .qz-plans-highlight {
    background: linear-gradient(90deg, #ffffff 0%, #c0ff00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 500 !important;
}