/**
 * 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-spec-card,
.ls-step,
.ls-faq-item {
    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-spec-card.ls-visible,
.ls-step.ls-visible,
.ls-faq-item.ls-visible,
.ls-hero-content.ls-visible,
.ls-hero-visual.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-pricing-feature-icon {
    flex-shrink: 0;
    margin: 0 auto 15px auto;
    display: block;
    color: rgba(255, 255, 255, 0.8);
}

.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: 600px;
    }
    
    .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;
    }
    
    .browser-hero-mockup {
        max-width: 100%;
    }
    
    .browser-hero-chrome {
        padding: 10px 12px;
    }
    
    .browser-hero-button {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .ls-hero-title {
        font-size: 32px;
    }
    
    .ls-hero-description {
        font-size: 16px;
    }
    
    .browser-hero-product,
    .browser-hero-form {
        padding: 30px 20px !important;
    }
    
    .browser-hero-title {
        font-size: 24px;
    }
    
    .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: #ffffff;
}

.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;
}

.ls-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ls-spec-card {
    background: white;
    border-radius: 20px;
    padding: 35px 28px;
    border: 2px solid rgba(0, 163, 255, 0.2);
}

.ls-spec-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.ls-spec-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ls-spec-card li {
    padding: 10px 0;
    color: #6c6c89;
    font-size: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.ls-spec-card li:last-child {
    border-bottom: none;
}


/* ==================== 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;
}

/* 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;
}

/* ==================== 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: #ffffff;
    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(247, 247, 250, 0.8);
    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;
    }
}

/* ==================== 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);
    }
    
    .ls-specs-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-specs-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;
    }
}