/**
 * Lemon Squeezy Landing Page Styles - BROWSER CHECKOUT VERSION
 * Clean purple branding with Browser Checkout CSS mockup (Yellow variant)
 * 
 * @package Devtonic Studios
 * @version 6.1.0 - CONSISTENT BORDERS (1px)
 * 
 * UPDATES:
 * - Changed card borders from 2px to 1px for consistency
 */

/* ==================== RESET & BASE ==================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==================== ANIMATION INITIAL STATES (PREVENTS SCROLL JUMP) ==================== */

/* Elements that will be animated by JavaScript should start hidden IN CSS */
.ls-feature-card,
.ls-specs-stats-bar,
.ls-specs-detail-card,
.ls-specs-events,
.ls-step,
.ls-faq-item,
.ls-mode-card,
.ls-who-card,
.ls-spotlight-block,
.ls-devhook-card,
.ls-disconnect-split,
.ls-versus {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Hero elements initial state */
.ls-hero-content,
.ls-hero-visual {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state class (added by JS when element enters viewport) */
.ls-feature-card.ls-visible,
.ls-specs-stats-bar.ls-visible,
.ls-specs-detail-card.ls-visible,
.ls-specs-events.ls-visible,
.ls-step.ls-visible,
.ls-faq-item.ls-visible,
.ls-hero-content.ls-visible,
.ls-hero-visual.ls-visible,
.ls-mode-card.ls-visible,
.ls-who-card.ls-visible,
.ls-spotlight-block.ls-visible,
.ls-devhook-card.ls-visible,
.ls-disconnect-split.ls-visible,
.ls-versus.ls-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Prevent FOUC (Flash of Unstyled Content) */
html {
    scroll-behavior: smooth;
}

/* ==================== SVG ICON STYLES ==================== */

.ls-badge-svg {
    flex-shrink: 0;
}

.ls-trust-svg {
    flex-shrink: 0;
}

.ls-feature-icon {
    flex-shrink: 0;
    margin: 0 auto 18px auto;
    display: block;
}



.ls-dogfood-stat-icon {
    flex-shrink: 0;
    margin: 0 auto 15px auto;
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes resultsGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ==================== HERO SECTION - WITH BROWSER CHECKOUT ==================== */

.ls-hero {
    min-height: 100vh;
    padding: 180px 40px 100px;
    background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    position: relative;
    overflow: hidden;
}

.ls-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15), transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.ls-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ls-official-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #00A3FF;
    letter-spacing: 0.5px;
}

.ls-official-badge svg {
    color: #00A3FF;
}

.ls-hero-title {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: -1px;
}

.ls-gradient-text {
    background: linear-gradient(135deg, #0066FF 0%, #00A3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.ls-hero-description {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 540px;
}

.ls-hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.ls-btn-primary,
.ls-btn-secondary {
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.ls-btn-primary {
    background: linear-gradient(135deg, #ffc233, #ffaa00);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 10px 40px rgba(255, 194, 51, 0.4);
}

.ls-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 194, 51, 0.5);
    background: linear-gradient(135deg, #ffd266, #ffc233);
}

.ls-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ls-btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.ls-btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.ls-btn-full {
    width: 100%;
    justify-content: center;
}

.ls-btn-arrow {
    transition: transform 0.3s ease;
}

.ls-btn-primary:hover .ls-btn-arrow {
    transform: translateX(5px);
}

.ls-trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.ls-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

/* ==================== BROWSER CHECKOUT MOCKUP ==================== */

.ls-hero-visual {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Browser Window Container */
.browser-hero-mockup {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    animation: browser-hero-float 7s ease-in-out infinite;
    background: white;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Floating Animation */
@keyframes browser-hero-float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-12px); 
    }
}

/* Browser Chrome */
.browser-hero-chrome {
    background: #f5f5f5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #ddd;
}

.browser-hero-buttons {
    display: flex;
    gap: 8px;
}

.browser-hero-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-hero-button.close { background: #ff5f57; }
.browser-hero-button.minimize { background: #ffbd2e; }
.browser-hero-button.maximize { background: #28c840; }

.browser-hero-address-bar {
    flex: 1;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-hero-lock-icon {
    color: #28c840;
    font-size: 14px;
}

/* Checkout Content */
.browser-hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    min-height: 480px;
}

/* Product Side - PURPLE THEME */
.browser-hero-product {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    padding: 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.browser-hero-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.browser-hero-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}

.browser-hero-description {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.browser-hero-features {
    list-style: none;
    margin-bottom: 0;
}

.browser-hero-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.95;
}

.browser-hero-features li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 12px;
}

/* Form Side */
.browser-hero-form {
    background: white;
    padding: 50px 40px;
    overflow-y: auto;
}

.browser-hero-form-header {
    margin-bottom: 30px;
}

.browser-hero-form-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.browser-hero-form-header p {
    font-size: 13px;
    color: #666;
}

.browser-hero-form-group {
    margin-bottom: 20px;
}

.browser-hero-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.browser-hero-form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
    font-family: inherit;
}

.browser-hero-form-group input:focus {
    outline: none;
    border-color: #0a1929;
    box-shadow: 0 0 0 3px rgba(10, 25, 41, 0.1);
}

.browser-hero-card-icons {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.browser-hero-card-icon {
    width: 36px;
    height: 24px;
    background: #f5f5f5;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #666;
}

.browser-hero-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.browser-hero-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ffc233, #ffaa00);
    color: #0a1929;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.browser-hero-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 194, 51, 0.4);
}

.browser-hero-security {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Glow Effect Behind Browser */
.browser-hero-mockup::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

/* ==================== RESPONSIVE - HERO & BROWSER ==================== */

@media (max-width: 1400px) {
    .browser-hero-mockup {
        max-width: 800px;
    }
}

@media (max-width: 1200px) {
    .ls-hero-container {
        gap: 60px;
    }
    
    .ls-hero-title {
        font-size: 52px;
    }
    
    .browser-hero-mockup {
        max-width: 700px;
    }
}

@media (max-width: 1024px) {
    .ls-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .ls-hero-visual {
        min-height: auto;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .browser-hero-mockup {
        max-width: 100%;
    }
    
    .browser-hero-content {
        grid-template-columns: 1fr;
    }
    
    .browser-hero-product {
        padding: 40px 30px;
    }
    
    .browser-hero-form {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .ls-hero {
        padding: 140px 20px 80px;
    }
    
    .ls-hero-title {
        font-size: 38px;
    }
    
    .ls-hero-buttons {
        flex-direction: column;
    }
    
    .ls-btn-primary,
    .ls-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .ls-trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .ls-hero-visual {
        min-height: auto;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    
    .browser-hero-mockup {
        max-width: 100%;
        width: 100%;
        margin: 0;
        animation: none;
    }
    
    .browser-hero-chrome {
        padding: 10px 12px;
    }
    
    .browser-hero-address-bar {
        font-size: 11px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        min-width: 0;
    }
    
    .browser-hero-button {
        width: 10px;
        height: 10px;
    }
    
    .browser-hero-product {
        padding: 30px 24px;
    }
    
    .browser-hero-title {
        font-size: 22px;
    }
    
    .browser-hero-description {
        font-size: 14px;
    }
    
    .browser-hero-features li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ls-hero {
        padding: 120px 15px 60px;
    }
    
    .ls-hero-title {
        font-size: 28px;
    }
    
    .ls-hero-description {
        font-size: 15px;
    }
    
    .browser-hero-mockup {
        border-radius: 8px;
    }
    
    .browser-hero-chrome {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .browser-hero-buttons {
        gap: 6px;
    }
    
    .browser-hero-button {
        width: 8px;
        height: 8px;
    }
    
    .browser-hero-address-bar {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .browser-hero-product,
    .browser-hero-form {
        padding: 24px 18px !important;
    }
    
    .browser-hero-logo {
        width: 40px;
        height: 40px;
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .browser-hero-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .browser-hero-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .browser-hero-features li {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .browser-hero-features li::before {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    .browser-hero-price {
        font-size: 36px;
    }
}

/* Admin bar adjustments */
.admin-bar .ls-hero {
    padding-top: 212px;
}

@media screen and (max-width: 782px) {
    .admin-bar .ls-hero {
        padding-top: 226px;
    }
}

@media screen and (max-width: 600px) {
    .admin-bar .ls-hero {
        padding-top: 180px;
    }
}

/* ==================== CONTAINER & SECTIONS ==================== */

.ls-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.ls-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.ls-section-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.ls-section-description {
    font-size: 19px;
    color: #6c6c89;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==================== FEATURES SECTION ==================== */

.ls-features {
    padding: 120px 0;
    background: #f9fafb;
}

.ls-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ls-feature-card {
    background: white;
    border-radius: 20px;
    padding: 35px 28px;
    border: 2px solid rgba(0, 163, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.ls-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 163, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 163, 255, 0.15);
}

.ls-feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.ls-feature-card p {
    font-size: 15px;
    color: #6c6c89;
    line-height: 1.6;
    margin: 0;
}

/* ==================== HOW IT WORKS SECTION ==================== */

.ls-how-it-works {
    padding: 120px 0;
    background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    position: relative;
}

.ls-how-it-works .ls-section-title,
.ls-how-it-works .ls-section-description {
    color: white;
}

.ls-how-it-works .ls-section-description {
    color: rgba(255, 255, 255, 0.75);
}

.ls-steps {
    max-width: 900px;
    margin: 0 auto;
}

.ls-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 60px;
    position: relative;
}

.ls-step:last-child {
    margin-bottom: 0;
}

.ls-step::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + 60px);
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.5), transparent);
}

.ls-step:last-child::after {
    display: none;
}

.ls-step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.4);
    position: relative;
    z-index: 1;
}

.ls-step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.ls-step-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

/* ==================== DOGFOOD SECTION ==================== */

.ls-dogfood {
    padding: 100px 0;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 50%, #0066FF 100%);
    position: relative;
    overflow: hidden;
}

.ls-dogfood::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.ls-dogfood-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ls-dogfood-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.ls-dogfood-badge svg {
    color: white;
}

.ls-dogfood-title {
    font-size: 48px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ls-dogfood-highlight {
    background: linear-gradient(135deg, #ffc233 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.ls-dogfood-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ls-dogfood-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ls-dogfood-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 163, 255, 0.3);
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.3s ease;
    text-align: center;
}

.ls-dogfood-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(0, 163, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 163, 255, 0.3);
}

.ls-dogfood-stat-label {
    font-size: 18px;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.ls-dogfood-stat-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Responsive for dogfood section */
@media (max-width: 768px) {
    .ls-dogfood {
        padding: 80px 0;
    }
    
    .ls-dogfood-title {
        font-size: 32px;
    }
    
    .ls-dogfood-description {
        font-size: 18px;
    }
    
    .ls-dogfood-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ls-dogfood-stat {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .ls-dogfood-title {
        font-size: 28px;
    }
    
    .ls-dogfood-description {
        font-size: 16px;
    }
    
    .ls-dogfood-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
}

/* ==================== SPECS SECTION ==================== */

.ls-specs {
    padding: 120px 0;
    background: #f9fafb;
}

/* Stats Bar */
.ls-specs-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    border-radius: 16px;
    border: 2px solid #e8e8e8;
    overflow: hidden;
    margin-bottom: 24px;
}

.ls-specs-stat {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
}

.ls-specs-stat:last-child {
    border-right: none;
}

.ls-specs-stat-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.ls-specs-stat-label {
    display: block;
    font-size: 13px;
    color: #6c6c89;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Detail Cards */
.ls-specs-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.ls-specs-detail-card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1.5px solid #e8e8e8;
}

.ls-specs-detail-card h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0066FF;
    margin-bottom: 14px;
}

.ls-specs-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ls-specs-detail-card li {
    padding: 7px 0;
    color: #6c6c89;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ls-specs-detail-card li::before {
    content: '✓';
    color: #0066FF;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.ls-specs-detail-card li:last-child {
    border-bottom: none;
}

/* Webhook Events */
.ls-specs-events {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1.5px solid #e8e8e8;
}

.ls-specs-events h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0066FF;
    margin-bottom: 14px;
}

.ls-specs-events-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ls-specs-event {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 6px;
    background: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.12);
    color: #0066FF;
    font-family: monospace;
    font-weight: 600;
}

/* Specs Responsive */
@media (max-width: 768px) {
    .ls-specs {
        padding: 80px 0;
    }
    .ls-specs-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .ls-specs-stat {
        border-bottom: 1px solid #f0f0f0;
    }
    .ls-specs-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ls-specs-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .ls-specs-stat {
        padding: 20px 14px;
    }
    .ls-specs-stat-num {
        font-size: 28px;
    }
}


/* ==================== PRICING SECTION - DARK PURPLE THEME WITH YELLOW CTA ==================== */

.ls-pricing {
    padding: 120px 0;
    background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    position: relative;
    overflow: hidden;
}

.ls-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(0, 163, 255, 0.08) 0%, transparent 50%);
    animation: resultsGlow 18s ease-in-out infinite;
    pointer-events: none;
}

.ls-pricing .ls-container {
    position: relative;
    z-index: 1;
}

.ls-pricing .ls-section-title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.ls-pricing .ls-gradient-text {
    background: linear-gradient(135deg, #ffc233 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ls-pricing .ls-section-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.ls-pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 80px;
    margin-bottom: 50px;
}

.ls-pricing-feature-item {
    background: linear-gradient(145deg, rgba(10, 25, 41, 0.8), rgba(0, 20, 41, 0.6));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 163, 255, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 163, 255, 0.1);
}

.ls-pricing-feature-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ls-pricing-feature-item:hover {
    border-color: rgba(0, 163, 255, 0.8);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 163, 255, 0.4), 0 0 0 1px rgba(0, 163, 255, 0.3), 0 0 80px rgba(0, 163, 255, 0.25);
}

.ls-pricing-feature-item:hover::after {
    opacity: 1;
}

.ls-pricing-feature-item h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.ls-pricing-feature-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.ls-pricing-feature-icon {
    flex-shrink: 0;
    margin: 0 auto 20px auto;
    display: block;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

/* Pricing Plans - Two Cards */
/* CTA Box - YELLOW THEME - NO GLOW ON IDLE, GLOW ON HOVER */
.ls-pricing-cta-box {
    background: linear-gradient(135deg, #ffc233 0%, #ffaa00 50%, #ffc233 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Idle state - NO animated glow */
.ls-pricing-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* HOVER STATE - GLOW ACTIVATES */
.ls-pricing-cta-box:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 
        0 30px 80px rgba(255, 170, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 100px rgba(255, 194, 51, 0.4);
}

.ls-pricing-cta-box:hover::before {
    opacity: 1;
    animation: resultsGlow 3s ease-in-out infinite;
}

.ls-pricing-cta-label {
    font-size: 20px;
    color: #0a1929;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.ls-pricing-cta-price {
    font-size: 96px;
    font-weight: 900;
    color: #0a1929;
    line-height: 1;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: text-shadow 0.5s ease;
}

/* Price glow only on hover */
.ls-pricing-cta-box:hover .ls-pricing-cta-price {
    text-shadow: 0 4px 30px rgba(255, 255, 255, 0.6);
}

.ls-pricing-cta-box .ls-btn-primary {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    background: #0a1929;
    color: #ffc233;
    box-shadow: 0 10px 30px rgba(10, 25, 41, 0.3);
}

.ls-pricing-cta-box .ls-btn-primary:hover {
    background: #001429;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(10, 25, 41, 0.5);
}

.ls-pricing-cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ls-pricing-cta-features span {
    color: #0a1929;
    font-size: 14px;
    font-weight: 700;
}

/* Toggle Tabs */
.ls-pricing-toggle {
    display: flex;
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    width: fit-content;
    margin: 0 auto 24px;
    gap: 0;
    position: relative;
    z-index: 1;
}

.ls-pricing-tab {
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ls-pricing-tab-active {
    background: #1a1a2e;
    color: #ffc233;
}

.ls-pricing-save {
    background: #10b981;
    color: #fff;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
}

.ls-pricing-tab-active .ls-pricing-save {
    background: rgba(255, 194, 51, 0.25);
    color: #ffc233;
}

.ls-pricing-cta-price span {
    font-size: 22px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.35);
}

.ls-pricing-cta-desc {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.ls-pricing-plan-view {
    position: relative;
    z-index: 1;
}

/* ==================== PRICING RESPONSIVE ==================== */

@media (max-width: 1024px) {
    .ls-pricing-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ls-pricing {
        padding: 80px 0;
    }

    .ls-pricing .ls-section-title {
        font-size: 42px;
    }

    .ls-pricing-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .ls-pricing-feature-item {
        padding: 40px 30px;
    }

    .ls-pricing-cta-box {
        padding: 40px 30px;
    }

    .ls-pricing-cta-price {
        font-size: 72px;
    }

    .ls-pricing-cta-features {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .ls-pricing .ls-section-title {
        font-size: 32px;
    }

    .ls-pricing-cta-price {
        font-size: 64px;
    }

    .ls-pricing-cta-label {
        font-size: 18px;
    }
    
    .ls-pricing-feature-item h3 {
        font-size: 20px;
    }
}
/**
 * Lemon Squeezy FAQ Styles
 * Similar to PriceWise FAQ but with blue background (#0066FF)
 * Version: 1.0.0
 */

/* Main FAQ Section with White Background */
.ls-faq {
    padding: 100px 40px;
    background: #f9fafb;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient overlay */
.ls-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.ls-faq-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ls-faq .ls-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.ls-faq .ls-section-label {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #0066FF;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ls-faq .ls-section-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0a1929 0%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.ls-faq .ls-section-description {
    font-size: 20px;
    color: rgba(10, 25, 41, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Tab Buttons */
.ls-faq-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.ls-faq-tab-btn {
    padding: 14px 32px;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 50px;
    color: #0066FF;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.ls-faq-tab-btn:hover {
    background: rgba(0, 102, 255, 0.1);
    color: #0066FF;
    border-color: rgba(0, 102, 255, 0.4);
    transform: scale(1.05);
}

.ls-faq-tab-btn.active {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    border-color: #0066FF;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

/* Content Wrapper */
.ls-faq-content-wrapper {
    position: relative;
    min-height: 600px;
    max-width: 900px;
    margin: 0 auto;
    transition: min-height 0.3s ease;
}

.ls-faq-tab-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ls-faq-tab-content.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
}

/* FAQ Items */
.ls-faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 163, 255, 0.2);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
    opacity: 1; 
    transform: translate(0, 0) scale(1);
    transform-origin: center center;
}

.ls-faq-tab-content:not(.active) .ls-faq-item {
    opacity: 0;
    pointer-events: none;
}

.ls-faq-tab-content.active .ls-faq-item {
    opacity: 1;
    pointer-events: auto;
}

.ls-faq-item:hover {
    border-color: rgba(0, 163, 255, 0.4);
    background: rgba(247, 247, 250, 1);
    box-shadow: 0 4px 12px rgba(0, 163, 255, 0.15);
}

.ls-faq-item.active-item {
    border-color: rgba(0, 163, 255, 0.6);
    box-shadow: 0 8px 24px rgba(0, 163, 255, 0.2);
}

/* FAQ Question */
.ls-faq-question {
    padding: 26px 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: #0a1929;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ls-faq-item:hover .ls-faq-question {
    padding-left: 35px;
    color: #0066FF;
}

.ls-faq-toggle {
    font-size: 16px;
    color: #0066FF;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    font-weight: 700;
}

.ls-faq-item.active-item .ls-faq-toggle {
    transform: rotate(180deg);
    color: #0052CC;
}

/* FAQ Answer */
.ls-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ls-faq-item.active-item .ls-faq-answer {
    max-height: 600px;
}

.ls-faq-answer-content {
    padding: 0 30px 0px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(10, 25, 41, 0.8);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s, padding 0.6s ease;
}

.ls-faq-item.active-item .ls-faq-answer-content {
    opacity: 1;
    transform: translateY(0);
    padding: 0 30px 26px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .ls-faq {
        padding: 80px 20px;
    }

    .ls-faq .ls-section-title {
        font-size: 36px;
    }

    .ls-faq .ls-section-description {
        font-size: 16px;
    }

    .ls-faq-tab-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .ls-faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }

    .ls-faq-answer-content {
        padding: 0 24px 0px;
        font-size: 15px;
    }

    .ls-faq-item.active-item .ls-faq-answer-content {
        padding: 0 24px 20px;
    }
}

@media (max-width: 480px) {
    .ls-faq .ls-section-title {
        font-size: 28px;
    }

    .ls-faq-tabs {
        gap: 8px;
    }

    .ls-faq-tab-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .ls-faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .ls-faq-answer-content {
        font-size: 14px;
    }
}

/* ==================== BUTTON STYLES (FROM HOMEPAGE) ==================== */

.btn-primary {
    background: linear-gradient(135deg, #0066FF 0%, #00A3FF 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
}

.btn-secondary-dark {
    background: transparent;
    color: #0a1929;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(10, 25, 41, 0.2);
}

.btn-secondary-dark:hover {
    background: rgba(0, 102, 255, 0.05);
    border-color: #0066FF;
    color: #0066FF;
    transform: translateY(-2px);
}

/* ==================== FINAL CTA SECTION (FROM HOMEPAGE) ==================== */

.final-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
}

.final-cta-container {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .btn-primary {
    background: #ffffff;
    color: #0066FF;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.final-cta .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.final-cta .btn-secondary-dark {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.final-cta .btn-secondary-dark:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .final-cta {
        padding: 80px 30px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .final-cta .btn-primary,
    .final-cta .btn-secondary-dark {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

/* ==================== PROBLEM SECTION — Disconnect + Versus ==================== */

.ls-problem {
    padding: 120px 0;
    background: #f9fafb;
}

.ls-section-label {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #0066FF;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Disconnect Visual — Split Cards */
.ls-disconnect-split {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.ls-disconnect-card {
    width: 220px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.ls-disconnect-wc {
    background: #96588a;
    border-radius: 20px 0 0 20px;
}

.ls-disconnect-ls {
    background: linear-gradient(145deg, #ffc233, #ffaa00);
    border-radius: 0 20px 20px 0;
}

.ls-disconnect-emoji {
    font-size: 36px;
    line-height: 1;
}

.ls-disconnect-card-name {
    font-size: 15px;
    font-weight: 800;
}

.ls-disconnect-wc .ls-disconnect-card-name {
    color: #ffffff;
}

.ls-disconnect-ls .ls-disconnect-card-name {
    color: #1a1a2e;
}

.ls-disconnect-card-sub {
    font-size: 12px;
    line-height: 1.4;
}

.ls-disconnect-wc .ls-disconnect-card-sub {
    color: rgba(255, 255, 255, 0.7);
}

.ls-disconnect-ls .ls-disconnect-card-sub {
    color: rgba(0, 0, 0, 0.45);
}

/* The crack / gap — vertical line with badge */
.ls-disconnect-crack {
    width: 60px;
    position: relative;
    flex-shrink: 0;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-disconnect-crack::before {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 1.5px;
    background: linear-gradient(180deg, transparent, rgba(255, 77, 79, 0.3) 25%, rgba(255, 77, 79, 0.3) 75%, transparent);
    transform: translateX(-50%);
}

.ls-disconnect-crack-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: #f9fafb;
    padding: 10px 0;
}

.ls-disconnect-crack-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 77, 79, 0.06);
    border: 1.5px solid rgba(255, 77, 79, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-disconnect-crack-label {
    font-size: 9px;
    font-weight: 800;
    color: #ff4d4f;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
}

@media (max-width: 768px) {
    .ls-disconnect-card {
        width: 160px;
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .ls-disconnect-split {
        flex-direction: column;
        align-items: center;
    }
    .ls-disconnect-wc {
        border-radius: 20px 20px 0 0;
    }
    .ls-disconnect-ls {
        border-radius: 0 0 20px 20px;
    }
    .ls-disconnect-crack {
        width: 100%;
        height: 50px;
        flex-direction: row;
    }
    .ls-disconnect-crack::before {
        top: 50%;
        left: 10%;
        right: 10%;
        bottom: auto;
        width: auto;
        height: 1.5px;
        background: linear-gradient(90deg, transparent, rgba(255, 77, 79, 0.3) 25%, rgba(255, 77, 79, 0.3) 75%, transparent);
        transform: none;
    }
    .ls-disconnect-crack-inner {
        flex-direction: row;
        padding: 0 10px;
        gap: 8px;
    }
    .ls-disconnect-crack-label {
        line-height: 1;
    }
}

/* Without vs With */
.ls-versus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 163, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.ls-versus-col {
    padding: 36px 32px;
}

.ls-versus-bad {
    background: linear-gradient(145deg, #0066FF, #0052CC);
}

.ls-versus-good {
    background: linear-gradient(145deg, #001429, #0a1929);
}

.ls-versus-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding-bottom: 16px;
}

.ls-versus-bad .ls-versus-header {
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ls-versus-good .ls-versus-header {
    color: rgba(0, 163, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ls-versus-item {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.ls-versus-item:last-child {
    margin-bottom: 0;
}

.ls-versus-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 800;
    margin-top: 2px;
}

.ls-versus-icon-x {
    background: #ff4d4f;
    color: #ffffff;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 77, 79, 0.4);
}

.ls-versus-icon-check {
    background: #00A3FF;
    color: #ffffff;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 163, 255, 0.4);
}

.ls-versus-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.ls-versus-text p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.ls-versus-bad .ls-versus-text h4 {
    color: #ffffff;
}

.ls-versus-bad .ls-versus-text p {
    color: rgba(255, 255, 255, 0.65);
}

.ls-versus-good .ls-versus-text h4 {
    color: #ffffff;
}

.ls-versus-good .ls-versus-text p {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .ls-problem {
        padding: 80px 0;
    }
    .ls-disconnect-emoji {
        font-size: 28px;
    }
    .ls-versus {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
    .ls-versus-col {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
}

/* ==================== BRIDGE SECTION ==================== */

.ls-bridge {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    position: relative;
    overflow: hidden;
}

.ls-bridge::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    border-radius: 50%;
}

.ls-bridge-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.ls-bridge-content h2 {
    font-size: 42px;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.ls-bridge-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ls-bridge {
        padding: 60px 0;
    }
    .ls-bridge-content h2 {
        font-size: 28px;
    }
    .ls-bridge-content p {
        font-size: 17px;
    }
}

/* ==================== CHECKOUT MODES SECTION ==================== */

.ls-checkout-modes {
    padding: 120px 0;
    background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    position: relative;
    overflow: hidden;
}

.ls-checkout-modes .ls-section-title {
    color: #ffffff;
}

.ls-checkout-modes .ls-section-label {
    background: rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 163, 255, 0.4);
    color: #00A3FF;
}

.ls-checkout-modes .ls-section-description {
    color: rgba(255, 255, 255, 0.7);
}

.ls-modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ls-mode-card {
    background: rgba(10, 25, 41, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 2px solid rgba(0, 163, 255, 0.25);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ls-mode-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 163, 255, 0.5);
    box-shadow: 0 25px 70px rgba(0, 163, 255, 0.2);
}

.ls-mode-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.ls-mode-recommended {
    background: linear-gradient(135deg, #ffc233, #ffaa00);
    color: #1a1a2e;
}

.ls-mode-card .ls-mode-mockup {
    flex: 1;
}

.ls-mode-redirect .ls-mode-redirect-flow {
    flex: 1;
}

.ls-mode-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    margin-top: auto;
    padding-top: 25px;
}

.ls-mode-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    min-height: 105px;
}

/* Overlay Mode Mockup */
.ls-mode-mockup {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
    background: #0d1b2a;
}

.ls-mode-mockup-bg {
    background: linear-gradient(135deg, #001429 0%, #0a1929 100%);
    padding: 30px;
    min-height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Browser Chrome */
.ls-mode-browser-chrome {
    background: #1a2332;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ls-mode-browser-dots {
    display: flex;
    gap: 5px;
}

.ls-mode-browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.ls-mode-browser-dots span:first-child { background: #ff5f57; }
.ls-mode-browser-dots span:nth-child(2) { background: #ffbd2e; }
.ls-mode-browser-dots span:last-child { background: #28c840; }

.ls-mode-browser-url-bar {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 9px;
    color: rgba(255,255,255,0.3);
    font-family: 'SF Mono', monospace;
}

.ls-mode-lock { font-size: 9px; color: #28c840; }

/* Overlay Body */
.ls-mode-overlay-body {
    background: #0d1b2a;
    padding: 14px;
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.ls-mode-store-blur { opacity: 0.25; }
.ls-mode-store-nav { height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; width: 55%; margin-bottom: 12px; }
.ls-mode-store-hero { height: 24px; background: rgba(255,255,255,0.04); border-radius: 6px; margin-bottom: 12px; }
.ls-mode-store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.ls-mode-store-item { height: 50px; background: rgba(255,255,255,0.06); border-radius: 5px; }

/* Overlay Popup */
.ls-mode-overlay-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.6);
    overflow: hidden;
    z-index: 2;
}

.ls-mode-popup-header {
    background: linear-gradient(135deg, #FFC233, #ffaa00);
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ls-mode-popup-close { font-size: 13px; opacity: 0.4; }
.ls-mode-popup-body { padding: 14px; }

.ls-mode-popup-product {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.ls-mode-popup-product-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, #0066FF, #00A3FF);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: #fff; font-weight: 800;
}

.ls-mode-popup-product-name { display: block; font-size: 11px; font-weight: 700; color: #1a1a2e; }
.ls-mode-popup-product-price { display: block; font-size: 10px; color: #6c6c89; }
.ls-mode-popup-group { margin-bottom: 8px; }
.ls-mode-popup-group label { display: block; font-size: 8px; font-weight: 700; color: #888; margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px; }

.ls-mode-popup-input {
    background: #f7f8fa; border: 1px solid #e5e7eb; border-radius: 6px;
    padding: 7px 10px; font-size: 10px; color: #aaa;
    display: flex; align-items: center; justify-content: space-between;
}

.ls-mode-popup-input-card { display: flex; justify-content: space-between; align-items: center; }
.ls-mode-popup-card-brands { display: flex; gap: 3px; }
.ls-mode-card-brand { font-size: 7px; font-weight: 800; color: #fff; padding: 2px 5px; border-radius: 2px; }
.ls-mode-brand-visa { background: #1a1f71; }
.ls-mode-brand-mc { background: #eb001b; }
.ls-mode-popup-row { display: flex; gap: 6px; }
.ls-mode-popup-row .ls-mode-popup-group { flex: 1; }

.ls-mode-popup-btn {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white; padding: 9px; border-radius: 7px;
    text-align: center; font-size: 11px; font-weight: 700; margin-top: 4px;
}

.ls-mode-popup-secure {
    text-align: center; font-size: 8px; color: #bbb; margin-top: 8px;
    display: flex; align-items: center; justify-content: center; gap: 4px;
}

.ls-mode-popup-secure span { color: #28c840; font-size: 9px; }

/* Redirect Mockup */
.ls-mode-redirect-flow {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; padding: 16px 10px;
}

.ls-mode-redirect-step {
    text-align: center;
}

.ls-mode-redirect-browser {
    width: 180px; border-radius: 10px; overflow: hidden;
    background: #fff; box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.ls-mode-ls-browser { border: 2px solid rgba(255, 194, 51, 0.4); }

.ls-mode-redir-chrome {
    background: #f5f5f5; padding: 6px 8px; display: flex;
    align-items: center; gap: 5px; border-bottom: 1px solid #eee;
}

.ls-mode-redir-url {
    font-size: 7px; color: #aaa; font-family: monospace;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.ls-mode-redir-body { padding: 10px 8px; }

/* WooCommerce checkout mockup styles */
.ls-mode-wc-section-title {
    font-size: 8px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ls-mode-wc-field-row {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
}

.ls-mode-wc-field {
    flex: 1;
    margin-bottom: 4px;
}

.ls-mode-wc-label {
    display: block;
    font-size: 6px;
    color: #999;
    margin-bottom: 2px;
}

.ls-mode-wc-input {
    height: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
}

.ls-mode-wc-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}

.ls-mode-wc-order-row {
    display: flex;
    justify-content: space-between;
    font-size: 7px;
    color: #6c6c89;
    padding: 4px 0;
    border-bottom: 1px solid #f3f3f3;
}

.ls-mode-wc-order-total {
    font-weight: 700;
    color: #1a1a2e;
    border-bottom: none;
    margin-bottom: 6px;
}

.ls-mode-redir-product {
    display: flex; align-items: center; gap: 7px;
    padding-bottom: 8px; margin-bottom: 8px; border-bottom: 1px solid #f3f3f3;
}

.ls-mode-redir-thumb {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, rgba(0,102,255,0.08), rgba(0,102,255,0.03));
    border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px;
}

.ls-mode-redir-name { display: block; font-size: 9px; font-weight: 700; color: #1a1a2e; }
.ls-mode-redir-price { display: block; font-size: 8px; color: #999; }

.ls-mode-redir-method {
    display: flex; align-items: center; gap: 5px;
    padding: 6px 7px; background: rgba(255,194,51,0.06);
    border: 1px solid rgba(255,194,51,0.2); border-radius: 5px;
    margin-bottom: 8px; font-size: 8px; font-weight: 600; color: #1a1a2e;
}

.ls-mode-redir-radio {
    width: 10px; height: 10px; border-radius: 50%;
    border: 2px solid #ffc233; position: relative; flex-shrink: 0;
}

.ls-mode-redir-radio::after {
    content: ''; position: absolute; top: 1.5px; left: 1.5px;
    width: 3px; height: 3px; border-radius: 50%; background: #ffc233;
}

.ls-mode-redir-btn {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white; padding: 6px; border-radius: 5px;
    text-align: center; font-size: 8px; font-weight: 700;
}

/* LS Checkout */
.ls-mode-ls-checkout {
    background: linear-gradient(145deg, #ffc233, #ffaa00);
    padding: 14px 10px; text-align: center;
}

.ls-mode-ls-logo { font-size: 18px; margin-bottom: 4px; }
.ls-mode-ls-title { font-size: 9px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.ls-mode-ls-group { margin-bottom: 5px; text-align: left; }
.ls-mode-ls-group label { display: block; font-size: 7px; font-weight: 700; color: rgba(0,0,0,0.4); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.3px; }
.ls-mode-ls-input { background: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.4); border-radius: 4px; padding: 5px 7px; font-size: 8px; color: rgba(0,0,0,0.35); }
.ls-mode-ls-row { display: flex; gap: 4px; }
.ls-mode-ls-row .ls-mode-ls-group { flex: 1; }

.ls-mode-ls-pay {
    background: #1a1a2e; color: #ffc233;
    padding: 7px; border-radius: 5px; text-align: center;
    font-size: 9px; font-weight: 700; margin-top: 6px;
}

/* Redirect Arrow */
.ls-mode-redirect-arrow {
    display: flex; flex-direction: column; align-items: center;
    gap: 4px; align-self: center; flex-shrink: 0; padding-top: 30px;
}

.ls-mode-redirect-arrow-label { font-size: 8px; color: rgba(255,255,255,0.25); font-weight: 600; }

.ls-mode-store-label {
    display: block; margin-top: 8px;
    font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 600;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(3px); }
}


/* Checkout Modes Responsive */
@media (max-width: 1200px) {
    .ls-mode-redirect-browser {
        width: 150px;
    }
    .ls-mode-redirect-flow {
        gap: 8px;
    }
    .ls-mode-popup-body {
        padding: 10px;
    }
    .ls-mode-overlay-body {
        min-height: 380px;
    }
}

@media (max-width: 1024px) {
    .ls-modes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }
    .ls-mode-redirect-browser {
        width: 200px;
    }
    .ls-mode-redirect-flow {
        gap: 14px;
    }
    .ls-mode-card {
        padding: 30px;
    }
    .ls-mode-overlay-body {
        min-height: 380px;
        padding: 16px;
    }
    .ls-mode-overlay-popup {
        width: 75%;
        max-width: 300px;
    }
    .ls-mode-store-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .ls-checkout-modes {
        padding: 80px 0;
    }
    .ls-mode-card {
        padding: 24px;
    }
    .ls-mode-redirect-browser {
        width: 170px;
    }
    .ls-mode-overlay-body {
        min-height: 360px;
        padding: 12px;
    }
    .ls-mode-overlay-popup {
        width: 80%;
        max-width: 260px;
    }
    .ls-mode-popup-product-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    .ls-mode-popup-product-name {
        font-size: 10px;
    }
    .ls-mode-popup-product-price {
        font-size: 9px;
    }
    .ls-mode-browser-url-bar {
        font-size: 8px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 580px) {
    .ls-mode-redirect-flow {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .ls-mode-redirect-browser {
        width: 100%;
        max-width: 260px;
    }
    .ls-mode-redirect-arrow {
        padding-top: 0;
    }
    .ls-mode-redirect-arrow svg {
        transform: rotate(90deg);
    }
    .ls-mode-redirect-arrow-label {
        display: none;
    }
    .ls-mode-overlay-body {
        min-height: 340px;
    }
    .ls-mode-overlay-popup {
        width: 85%;
    }
    .ls-mode-store-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
    .ls-mode-store-item {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .ls-mode-card {
        padding: 18px;
    }
    .ls-mode-card h3 {
        font-size: 20px;
    }
    .ls-mode-card p {
        font-size: 14px;
    }
    .ls-mode-overlay-body {
        min-height: 320px;
        padding: 10px;
    }
    .ls-mode-overlay-popup {
        width: 88%;
        max-width: 230px;
    }
    .ls-mode-popup-group {
        margin-bottom: 6px;
    }
    .ls-mode-popup-group label {
        font-size: 7px;
    }
    .ls-mode-popup-input {
        padding: 5px 8px;
        font-size: 9px;
    }
    .ls-mode-popup-btn {
        padding: 7px;
        font-size: 10px;
    }
    .ls-mode-popup-product {
        gap: 8px;
        padding-bottom: 8px;
        margin-bottom: 8px;
    }
    .ls-mode-popup-secure {
        font-size: 7px;
        margin-top: 6px;
    }
    .ls-mode-popup-row {
        gap: 4px;
    }
    .ls-mode-badge {
        top: 12px;
        right: 12px;
        padding: 4px 12px;
        font-size: 9px;
    }
    .ls-mode-browser-chrome {
        padding: 6px 8px;
    }
    .ls-mode-browser-dots span {
        width: 6px;
        height: 6px;
    }
    .ls-mode-browser-url-bar {
        font-size: 7px;
        padding: 3px 6px;
    }
    .ls-mode-store-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
    }
    .ls-mode-store-item {
        height: 28px;
    }
    .ls-mode-store-hero {
        height: 18px;
        margin-bottom: 8px;
    }
    .ls-mode-store-nav {
        height: 4px;
        margin-bottom: 8px;
    }
}

/* ==================== WHO IS THIS FOR SECTION ==================== */

.ls-who {
    padding: 120px 0;
    background: #f9fafb;
}

.ls-who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ls-who-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid rgba(0, 163, 255, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.ls-who-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 163, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 163, 255, 0.12);
}

.ls-who-emoji {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.ls-who-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.ls-who-card p {
    font-size: 15px;
    color: #6c6c89;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .ls-who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ls-who {
        padding: 80px 0;
    }
    .ls-who-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== SPOTLIGHT SECTION (License Keys + Product Sync) ==================== */

.ls-spotlight {
    padding: 120px 0;
    background: #ffffff;
}

.ls-spotlight-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.ls-spotlight-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ls-spotlight-block.ls-spotlight-reverse {
    direction: rtl;
}

.ls-spotlight-block.ls-spotlight-reverse > * {
    direction: ltr;
}

.ls-spotlight-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.ls-spotlight-text p {
    font-size: 17px;
    color: #6c6c89;
    line-height: 1.7;
    margin: 0;
}

/* Spotlight Mockups */
.ls-spotlight-mockup {
    background: linear-gradient(135deg, #001429 0%, #0a1929 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 163, 255, 0.2);
}

.ls-spotlight-mockup-header {
    background: rgba(0, 102, 255, 0.15);
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 163, 255, 0.2);
}

.ls-spotlight-mockup-body {
    padding: 24px;
}

/* License Key Mockup */
.ls-spotlight-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ls-spotlight-row:last-child {
    border-bottom: none;
}

.ls-spotlight-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.ls-spotlight-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.ls-spotlight-key {
    font-family: 'SF Mono', 'Fira Code', monospace;
    background: rgba(0, 102, 255, 0.15);
    padding: 4px 12px;
    border-radius: 6px;
    color: #00A3FF;
    letter-spacing: 1px;
    font-size: 13px;
}

.ls-spotlight-status {
    background: rgba(40, 200, 64, 0.15);
    color: #28c840;
    padding: 4px 12px;
    border-radius: 6px;
}

/* Product Sync Mockup */
.ls-spotlight-sync-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ls-spotlight-sync-item:last-child {
    border-bottom: none;
}

.ls-spotlight-sync-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 194, 51, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ls-spotlight-sync-info {
    flex: 1;
}

.ls-spotlight-sync-info strong {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3px;
}

.ls-spotlight-sync-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-family: monospace;
}

.ls-spotlight-sync-badge {
    background: rgba(40, 200, 64, 0.15);
    color: #28c840;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .ls-spotlight-block,
    .ls-spotlight-block.ls-spotlight-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .ls-spotlight-text h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .ls-spotlight {
        padding: 80px 0;
    }
    .ls-spotlight-grid {
        gap: 60px;
    }
    .ls-spotlight-block {
        gap: 30px;
    }
}

/* ==================== DEVELOPER HOOKS SECTION ==================== */

.ls-devhooks {
    padding: 120px 0;
    background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    position: relative;
    overflow: hidden;
}

.ls-devhooks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 163, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.ls-devhooks .ls-container {
    position: relative;
    z-index: 1;
}

.ls-devhooks .ls-section-label {
    background: rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 163, 255, 0.4);
    color: #00A3FF;
}

.ls-devhooks .ls-section-title {
    color: #ffffff;
}

.ls-devhooks .ls-section-description {
    color: rgba(255, 255, 255, 0.7);
}

.ls-devhooks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.ls-devhook-card {
    background: rgba(10, 25, 41, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 163, 255, 0.25);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.3s ease;
}

.ls-devhook-card:hover {
    border-color: rgba(0, 163, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 163, 255, 0.15);
}

.ls-devhook-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.ls-code-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ls-code-block code {
    display: block;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 163, 255, 0.2);
    padding: 10px 16px;
    border-radius: 8px;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 13px;
    color: #00A3FF;
    transition: all 0.2s ease;
}

.ls-code-block code:hover {
    background: rgba(0, 102, 255, 0.18);
    border-color: rgba(0, 163, 255, 0.4);
}

.ls-devhook-desc {
    margin-top: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ls-devhooks {
        padding: 80px 0;
    }
    .ls-devhooks-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== ADMIN UI PREVIEW SECTION ==================== */

.ls-admin-preview {
    padding: 120px 0;
    background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    position: relative;
    overflow: hidden;
}

.ls-admin-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 163, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.ls-admin-preview .ls-container {
    position: relative;
    z-index: 1;
}

.ls-admin-preview .ls-section-label {
    background: rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 163, 255, 0.4);
    color: #00A3FF;
}

.ls-admin-preview .ls-section-title {
    color: #ffffff;
}

.ls-admin-preview .ls-section-description {
    color: rgba(255, 255, 255, 0.7);
}

.ls-admin-mockup {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 163, 255, 0.2);
}

.ls-admin-chrome {
    background: #f5f5f5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #ddd;
}

.ls-admin-chrome-dots {
    display: flex;
    gap: 6px;
}

.ls-admin-chrome-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ls-admin-chrome-dots span:nth-child(1) { background: #ff5f57; }
.ls-admin-chrome-dots span:nth-child(2) { background: #ffbd2e; }
.ls-admin-chrome-dots span:nth-child(3) { background: #28c840; }

.ls-admin-chrome-url {
    flex: 1;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    color: #666;
}

.ls-admin-body {
    background: #f0f0f1;
    padding: 24px;
}

.ls-admin-header-bar {
    background: white;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
}

.ls-admin-title {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.ls-admin-subtitle {
    font-size: 13px;
    color: #6c6c89;
}

.ls-admin-status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.ls-admin-connected {
    background: rgba(40, 200, 64, 0.1);
    color: #16a34a;
    border: 1px solid rgba(40, 200, 64, 0.3);
}

.ls-admin-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28c840;
}

.ls-admin-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ls-admin-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
}

.ls-admin-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.ls-admin-card-emoji {
    font-size: 18px;
}

.ls-admin-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

.ls-admin-field {
    margin-bottom: 14px;
}

.ls-admin-field-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6c6c89;
    margin-bottom: 6px;
}

.ls-admin-input-row {
    display: flex;
    gap: 6px;
}

.ls-admin-input {
    flex: 1;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 11px;
    color: #6c6c89;
    font-family: monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ls-admin-btn-small {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #6c6c89;
    white-space: nowrap;
}

.ls-admin-btn-primary-mock {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 14px;
}

.ls-admin-btn-sm {
    margin-top: 0;
    padding: 8px 14px;
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ls-admin-btn-secondary-mock {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #1a1a2e;
    padding: 8px 14px;
    border-radius: 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.ls-admin-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f3f4f6;
}

.ls-admin-action:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ls-admin-action strong {
    display: block;
    font-size: 13px;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.ls-admin-action span {
    font-size: 12px;
    color: #6c6c89;
}

@media (max-width: 768px) {
    .ls-admin-preview {
        padding: 80px 0;
    }
    .ls-admin-body {
        padding: 14px;
    }
    .ls-admin-cards {
        grid-template-columns: 1fr;
    }
    .ls-admin-header-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px 20px;
    }
    .ls-admin-card {
        padding: 18px;
    }
    .ls-admin-input {
        font-size: 10px;
    }
    .ls-admin-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .ls-admin-chrome-url {
        font-size: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .ls-admin-title {
        font-size: 15px;
    }
    .ls-admin-input-row {
        flex-direction: column;
    }
}

/* ==================== GUARANTEE (inside pricing section) ==================== */

.ls-guarantee-box {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 60px auto 0;
    background: rgba(0, 102, 255, 0.04);
    border: 2px solid rgba(0, 102, 255, 0.15);
    border-radius: 24px;
    padding: 50px;
}

.ls-guarantee-dark {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.ls-guarantee-shield {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-guarantee-dark .ls-guarantee-text h3 {
    color: #ffffff;
}

.ls-guarantee-dark .ls-guarantee-text p {
    color: rgba(255, 255, 255, 0.85);
}

.ls-guarantee-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.ls-guarantee-text p {
    font-size: 16px;
    color: #6c6c89;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .ls-guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 25px;
    }
}

/* ==================== GENERAL RESPONSIVE ==================== */

@media (max-width: 1200px) {
    .ls-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .ls-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ls-container {
        padding: 0 20px;
    }
    
    .ls-section-title {
        font-size: 34px;
    }
    
    .ls-features-grid,
    .ls-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .ls-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    
    .ls-step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .ls-section-title {
        font-size: 28px;
    }
    
    .ls-hero-description,
    .ls-section-description {
        font-size: 16px;
    }
    
    .ls-feature-card,
    .ls-spec-card {
        padding: 28px 22px;
    }
}