/* Landing Page Plugin Styles */

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --section-padding: 4rem 2rem;
}

.lpp-landing-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.lpp-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 80vh;
    margin-bottom: 0;
}

.lpp-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.lpp-hero-content {
    position: relative;
    z-index: 3;
    max-width: 50%;
    padding-right: 2rem;
}

.lpp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.lpp-hero-badge span {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.4rem 0.9rem;
    border-radius: 25px;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.lpp-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.lpp-hero-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.lpp-hero-content p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
    font-weight: 400;
}

.lpp-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.lpp-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 200px;
}

.lpp-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.lpp-stat:hover::before {
    left: 100%;
}

.lpp-stat:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lpp-stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.lpp-stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lpp-stat:hover .lpp-stat-number::after {
    opacity: 1;
}

.lpp-stat-label {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.lpp-stat:hover .lpp-stat-label {
    opacity: 1;
    letter-spacing: 0.2em;
}

.lpp-cta-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.lpp-download-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    color: var(--primary-color);
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 220px;
}

.lpp-download-btn.primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.lpp-download-btn.large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    min-width: 280px;
}

.lpp-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.lpp-download-btn:active {
    transform: translateY(-1px);
}

.lpp-btn-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.lpp-btn-subtext {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.lpp-demo-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    color: var(--white);
    padding: 1.25rem 2rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.lpp-demo-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.lpp-demo-btn .lpp-btn-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.lpp-hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.lpp-hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.lpp-download-section {
    margin-top: 30px;
}

.lpp-download-btn {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #667eea;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.lpp-download-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

.lpp-download-icon {
    margin-right: 10px;
    font-size: 1.5em;
}

.lpp-contact-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lpp-contact-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 2.5em;
    font-weight: 600;
}

.lpp-form-group {
    margin-bottom: 20px;
}

.lpp-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.lpp-form-group input,
.lpp-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.lpp-form-group input:focus,
.lpp-form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.lpp-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.lpp-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    display: block;
    margin: 20px auto 0;
}

.lpp-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.lpp-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#lpp-form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}

#lpp-form-response.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#lpp-form-response.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lpp-landing-page {
        padding: 10px;
    }

    .lpp-hero-section {
        padding: 40px 20px;
    }

    .lpp-hero-section h1 {
        font-size: 2.2em;
    }

    .lpp-hero-section p {
        font-size: 1.1em;
    }

    .lpp-contact-section {
        padding: 30px 20px;
    }

    .lpp-contact-section h2 {
        font-size: 2em;
    }

    .lpp-download-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .lpp-hero-section h1 {
        font-size: 1.8em;
    }

    .lpp-hero-section p {
        font-size: 1em;
    }

    .lpp-contact-section h2 {
        font-size: 1.8em;
    }

    .lpp-form-group input,
    .lpp-form-group textarea {
        padding: 10px 12px;
    }

    .lpp-submit-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

/* Loading animation */
.lpp-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: lpp-spin 1s linear infinite;
    margin-right: 10px;
}

.lpp-loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--white);
    border-radius: 50%;
    animation: lpp-spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes lpp-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Admin styles */
.lpp-admin-notice {
    background: #fff;
    border: 1px solid #e1e5e9;
    border-left: 4px solid #667eea;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.lpp-admin-notice h3 {
    margin-top: 0;
    color: #333;
}

.lpp-admin-notice ol {
    margin-bottom: 0;
}

.lpp-shortcode-info {
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    padding: 15px 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.lpp-shortcode-info h3 {
    margin-top: 0;
    color: #333;
}

.lpp-shortcode-info code {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}



.lpp-hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.lpp-hero-content p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.lpp-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.lpp-stat {
    text-align: center;
}

.lpp-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.lpp-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lpp-cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lpp-download-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.lpp-download-btn.primary {
    background: var(--white);
    color: var(--primary-color);
}

.lpp-download-btn.large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.lpp-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.lpp-download-btn:active {
    transform: translateY(0);
}

.lpp-btn-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.lpp-btn-subtext {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.lpp-demo-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.lpp-demo-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.lpp-demo-btn .lpp-btn-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* ============================================================================
   HERO SECTION STYLES (MERGED FROM hero-section.css)
   ============================================================================ */

/* Complete Hero Section - Fixed Version */
.lpp-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 70vh;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
}

.lpp-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.lpp-hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 500px;
}

.lpp-hero-content {
    position: relative;
    z-index: 3;
}

.lpp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.lpp-hero-badge span {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.4rem 0.9rem;
    border-radius: 25px;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.lpp-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--white) !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6) !important;
    background: none !important;
    -webkit-text-fill-color: var(--white) !important;
}

.lpp-hero-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white) !important;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5) !important;
    opacity: 1 !important;
}

.lpp-hero-content p {
    font-size: 1.2rem;
    color: var(--white) !important;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4) !important;
    opacity: 1 !important;
    font-weight: 400;
    max-width: 600px;
}

.lpp-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.lpp-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 1.5rem 1rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    min-width: 120px;
}

.lpp-stat:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
}

.lpp-stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--white) !important;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6) !important;
}

.lpp-stat-label {
    font-size: 0.95rem;
    color: var(--white) !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.lpp-cta-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.lpp-download-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--white) !important;
    color: var(--primary-color) !important;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.lpp-download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--primary-color) !important;
}

.lpp-download-btn:active {
    transform: translateY(-2px);
}

.lpp-btn-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.lpp-btn-subtext {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.lpp-hero-visual {
    position: relative;
    z-index: 2;
}

.lpp-dashboard-preview {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 500px;
    margin-left: auto;
}

.lpp-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.lpp-dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.lpp-dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.lpp-dashboard-dots span:nth-child(1) { background: #ff5f57; }
.lpp-dashboard-dots span:nth-child(2) { background: #ffbd2e; }
.lpp-dashboard-dots span:nth-child(3) { background: #28ca42; }

.lpp-dashboard-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
}

.lpp-dashboard-content {
    display: flex;
    height: 300px;
}

.lpp-dashboard-sidebar {
    width: 40%;
    background: var(--gray-50);
    padding: 1.5rem 1rem;
    border-right: 1px solid var(--gray-200);
}

.lpp-nav-item {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lpp-nav-item.active {
    background: var(--primary-color);
    color: var(--white);
}

.lpp-nav-item:not(.active):hover {
    background: var(--gray-100);
}

.lpp-dashboard-main {
    flex: 1;
    padding: 2rem;
    display: flex;
    align-items: end;
    background: var(--white);
}

.lpp-chart-container {
    display: flex;
    align-items: end;
    gap: 0.75rem;
    height: 150px;
    width: 100%;
}

.lpp-chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), rgba(102, 126, 234, 0.7));
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    transition: all 0.3s ease;
}

.lpp-chart-bar:nth-child(1) { height: 60%; }
.lpp-chart-bar:nth-child(2) { height: 85%; }
.lpp-chart-bar:nth-child(3) { height: 45%; }
.lpp-chart-bar:nth-child(4) { height: 70%; }
.lpp-chart-bar:nth-child(5) { height: 95%; }
.lpp-chart-bar:nth-child(6) { height: 55%; }

/* Mobile Responsiveness for Hero Section */
@media (max-width: 1024px) {
    .lpp-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        min-height: auto;
    }

    .lpp-hero-content h1 {
        font-size: 3rem;
    }

    .lpp-hero-stats {
        justify-content: center;
    }

    .lpp-cta-buttons {
        justify-content: center;
    }

    .lpp-dashboard-preview {
        margin: 0 auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .lpp-hero-section {
        padding: 3rem 0;
        min-height: 60vh;
    }

    .lpp-hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .lpp-hero-content h1 {
        font-size: 2.5rem;
    }

    .lpp-hero-content h2 {
        font-size: 1.3rem;
    }

    .lpp-hero-content p {
        font-size: 1.1rem;
    }

    .lpp-hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .lpp-stat {
        min-width: 100px;
        padding: 1rem 0.75rem;
    }

    .lpp-stat-number {
        font-size: 2.2rem;
    }

    .lpp-download-btn {
        width: 100%;
        max-width: 320px;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }

    .lpp-dashboard-content {
        flex-direction: column;
        height: auto;
    }

    .lpp-dashboard-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding: 1rem;
    }

    .lpp-nav-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .lpp-dashboard-main {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .lpp-hero-section {
        padding: 2rem 0;
    }

    .lpp-hero-container {
        padding: 0 0.5rem;
    }

    .lpp-hero-content h1 {
        font-size: 2rem;
    }

    .lpp-hero-content h2 {
        font-size: 1.1rem;
    }

    .lpp-hero-content p {
        font-size: 1rem;
    }

    .lpp-stat-number {
        font-size: 1.8rem;
    }

    .lpp-stat-label {
        font-size: 0.8rem;
    }

    .lpp-download-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-width: 250px;
    }

    .lpp-dashboard-preview {
        max-width: 100%;
        margin: 0;
    }
}

/* Features Overview Section */
.lpp-features-overview {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.lpp-features-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.lpp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.lpp-feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.lpp-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.lpp-feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.lpp-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.lpp-feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Modules Section */
.lpp-modules-section {
    padding: var(--section-padding);
    background: var(--white);
}

.lpp-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.lpp-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.lpp-section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
}

.lpp-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.lpp-module-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lpp-module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.lpp-module-card:hover::before {
    transform: scaleX(1);
}

.lpp-module-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.lpp-module-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.lpp-module-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.lpp-module-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lpp-module-status {
    display: flex;
    justify-content: flex-end;
}

.lpp-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lpp-status-badge.included {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Demo Section */
.lpp-demo-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
}

.lpp-demo-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.lpp-demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.lpp-demo-item {
    text-align: center;
    padding: 2rem;
}

.lpp-demo-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lpp-demo-item p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Installation Section */
.lpp-installation-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.lpp-installation-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.lpp-steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.lpp-step {
    text-align: center;
    flex: 1;
}

.lpp-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.lpp-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.lpp-step p {
    color: var(--gray-600);
    line-height: 1.6;
}

.lpp-step-arrow {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
}

/* Contact Section */
.lpp-contact-section {
    padding: var(--section-padding);
    background: var(--white);
}

.lpp-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.lpp-contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.lpp-contact-info p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.lpp-contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lpp-contact-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lpp-feature-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--success-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.lpp-contact-form-container {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
}

.lpp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lpp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.lpp-form-group {
    display: flex;
    flex-direction: column;
}

.lpp-form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.lpp-form-group input,
.lpp-form-group select,
.lpp-form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.2s ease;
    background: var(--white);
}

.lpp-form-group input:focus,
.lpp-form-group select:focus,
.lpp-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.lpp-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.lpp-submit-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lpp-submit-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.lpp-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.lpp-btn-loading {
    display: none;
}

.lpp-submit-btn.loading .lpp-btn-text {
    display: none;
}

.lpp-submit-btn.loading .lpp-btn-loading {
    display: inline;
}

#lpp-form-response {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    display: none;
}

#lpp-form-response.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: block;
}

#lpp-form-response.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: block;
}

/* Footer CTA */
.lpp-footer-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.lpp-footer-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lpp-footer-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lpp-hero-section {
        flex-direction: column;
        text-align: center;
        padding: 4rem 0;
        min-height: auto;
    }

    .lpp-hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 3rem;
        position: relative;
        z-index: 3;
    }

    .lpp-hero-visual {
        position: static;
        transform: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        z-index: 2;
    }

    .lpp-contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lpp-steps-container {
        flex-direction: column;
        gap: 3rem;
    }

    .lpp-step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }

    .lpp-hero-content h1 {
        font-size: 2.5rem;
    }

    .lpp-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .lpp-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .lpp-features-grid,
    .lpp-modules-grid {
        grid-template-columns: 1fr;
    }

    .lpp-demo-grid {
        grid-template-columns: 1fr;
    }

    .lpp-form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .lpp-dashboard-content {
        flex-direction: column;
        height: auto;
    }

    .lpp-dashboard-sidebar {
        width: 100%;
    }

    .lpp-section-header h2,
    .lpp-features-overview h2,
    .lpp-installation-section h2,
    .lpp-contact-info h2,
    .lpp-footer-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .lpp-container {
        padding: 0 1rem;
    }

    .lpp-hero-content h1 {
        font-size: 2rem;
    }

    .lpp-hero-content h2 {
        font-size: 1.25rem;
    }

    .lpp-hero-content p {
        font-size: 1rem;
    }

    .lpp-contact-form-container {
        padding: 1.5rem;
    }

    .lpp-feature-card,
    .lpp-module-card {
        padding: 1.5rem;
    }

    .lpp-demo-item {
        padding: 1.5rem;
    }
}

/* Loading and Animation States */
.lpp-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--white);
    border-radius: 50%;
    animation: lpp-spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes lpp-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.lpp-download-btn:focus,
.lpp-demo-btn:focus,
.lpp-submit-btn:focus,
.lpp-form-group input:focus,
.lpp-form-group select:focus,
.lpp-form-group textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .lpp-hero-visual,
    .lpp-cta-buttons,
    .lpp-contact-form-container {
        display: none;
    }
    
    .lpp-landing-page {
        color: #000;
    }
    
    .lpp-hero-section {
        background: none;
        color: #000;
    }
}

/* PayPal Donation Button */
.lpp-paypal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0070ba 0%, #003087 100%);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 112, 186, 0.4);
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    width: 100%;
    max-width: 280px;
}

.lpp-paypal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 186, 0.6);
    background: linear-gradient(135deg, #005ea6 0%, #002766 100%);
}

.lpp-paypal-btn .lpp-btn-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.lpp-paypal-btn:focus {
    outline: 3px solid rgba(0, 112, 186, 0.5);
    outline-offset: 2px;
}

/* ============================================================================
   ADMIN STYLES (MERGED FROM lpp-admin.css)
   ============================================================================ */

.lpp-admin-header {
    margin: 20px 0;
}

.lpp-admin-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.lpp-admin-notice h3 {
    color: white;
    margin: 0 0 15px 0;
    font-size: 18px;
}

.lpp-admin-notice ol {
    margin-bottom: 0;
    padding-left: 20px;
}

.lpp-admin-notice ol li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.lpp-admin-notice code {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: Consolas, Monaco, monospace;
}

.lpp-shortcode-info {
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-left: 4px solid #667eea;
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.lpp-shortcode-info h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.lpp-shortcode-info code {
    background: #e9ecef;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: Consolas, Monaco, monospace;
    font-weight: 600;
    color: #495057;
}

.lpp-help-section {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.lpp-help-section h3 {
    margin: 0 0 15px 0;
    color: #333;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.lpp-help-section ul {
    list-style: none;
    padding: 0;
}

.lpp-help-section ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.lpp-help-section ul li:last-child {
    border-bottom: none;
}

.lpp-help-section a {
    color: #667eea;
    text-decoration: none;
}

.lpp-help-section a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Form styling improvements */
.form-table th {
    width: 200px;
    padding-right: 20px;
    font-weight: 600;
    color: #333;
}

.form-table td {
    padding: 15px 10px 15px 0;
}

.form-table input[type="text"],
.form-table input[type="email"],
.form-table input[type="url"],
.form-table textarea,
.form-table select {
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-table input[type="text"]:focus,
.form-table input[type="email"]:focus,
.form-table input[type="url"]:focus,
.form-table textarea:focus,
.form-table select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form-table .description {
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

/* Section headers */
h2.title {
    color: #333;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Upload button styling */
.lpp-upload-button {
    margin-left: 10px;
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lpp-upload-button:hover {
    background: #5a67d8;
}

/* Preview button styling */
.lpp-preview-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.lpp-preview-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Checkbox styling */
input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
}

/* Code textarea styling */
.form-table textarea.code {
    font-family: Consolas, Monaco, 'Courier New', monospace;
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    padding: 15px;
    line-height: 1.5;
}

/* Details/summary for examples */
details {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e1e5e9;
}

summary {
    cursor: pointer;
    font-weight: 600;
    color: #667eea;
    padding: 5px 0;
}

summary:hover {
    color: #5a67d8;
}

details pre {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin: 10px 0 0 0;
    overflow-x: auto;
    font-size: 13px;
}

/* Settings sections */
.form-table {
    margin-top: 0;
}

h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
    color: #333;
}

/* Success/error messages */
.notice.settings-error {
    border-left-width: 4px;
    border-radius: 4px;
    margin: 15px 0;
}

.notice.notice-success {
    border-left-color: #10b981;
    background: #d4edda;
}

.notice.notice-error {
    border-left-color: #ef4444;
    background: #f8d7da;
}

/* Submit button styling */
.submit .button-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.submit .button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Loading states */
.lpp-loading-admin {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Plugin header styling */
.wrap h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

/* Accessibility improvements */
.lpp-upload-button:focus,
.lpp-preview-button:focus,
.submit .button-primary:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Print styles for admin */
@media print {
    .lpp-admin-notice,
    .lpp-shortcode-info,
    .lpp-help-section {
        background: none !important;
        color: #000 !important;
        border: 1px solid #000 !important;
    }
}

/* Analytics Dashboard Styles */
.lpp-analytics-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    margin: 20px 0 30px 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.lpp-analytics-header h2 {
    color: white;
    margin: 0 0 15px 0;
    font-size: 18px;
}

.lpp-analytics-header form {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.lpp-analytics-header label {
    color: white;
    font-weight: 600;
    margin: 0;
}

.lpp-analytics-header input[type="date"] {
    padding: 8px 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.lpp-analytics-header input[type="date"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
}

.lpp-analytics-header .button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lpp-analytics-header .button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.lpp-analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.lpp-stat-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.lpp-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.lpp-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.lpp-stat-card h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.lpp-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin: 10px 0;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lpp-stat-rate {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 20px;
    display: inline-block;
}

.lpp-analytics-charts {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.lpp-chart-container {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.lpp-chart-container h3 {
    margin: 0 0 25px 0;
    font-size: 20px;
    color: #333;
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.lpp-device-browser-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.lpp-country-stats,
.lpp-device-stats,
.lpp-browser-stats {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.lpp-country-stats h3,
.lpp-device-stats h3,
.lpp-browser-stats h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #333;
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 12px;
}

.lpp-device-stats canvas {
    max-height: 300px;
    margin: 20px auto;
}

.lpp-country-stats table,
.lpp-browser-stats table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.lpp-country-stats table th,
.lpp-browser-stats table th {
    background: #f8f9fa;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e9ecef;
}

.lpp-country-stats table td,
.lpp-browser-stats table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.lpp-country-stats table tr:hover,
.lpp-browser-stats table tr:hover {
    background: #f8f9fa;
}

/* Real-time indicators */
.lpp-realtime-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #10b981;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.lpp-realtime-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .lpp-device-browser-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lpp-analytics-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .lpp-analytics-header form {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .lpp-analytics-header form > div {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .lpp-stat-card {
        padding: 20px;
    }

    .lpp-stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .lpp-analytics-grid {
        grid-template-columns: 1fr;
    }

    .lpp-stat-card h3 {
        font-size: 14px;
    }

    .lpp-stat-number {
        font-size: 24px;
    }

    .lpp-stat-rate {
        font-size: 12px;
        padding: 4px 8px;
    }
}

/* Loading states */
.lpp-analytics-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #666;
}

.lpp-analytics-loading::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error states */
.lpp-analytics-error {
    background: #fee;
    color: #c33;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #fcc;
    margin: 20px 0;
}

/* Export buttons */
.lpp-export-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    justify-content: flex-end;
}

.lpp-export-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lpp-export-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Chart customizations */
.lpp-chart-container canvas {
    max-width: 100%;
    height: auto !important;
}

/* Tooltip styles for charts */
.lpp-chart-tooltip {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Dashboard header with summary */
.lpp-dashboard-summary {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.lpp-dashboard-summary h2 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 24px;
    font-weight: 700;
}

.lpp-dashboard-summary p {
    color: #666;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Accessibility improvements */
.lpp-stat-card:focus,
.lpp-chart-container:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .lpp-analytics-header,
    .lpp-export-buttons {
        display: none !important;
    }

    .lpp-stat-card,
    .lpp-chart-container,
    .lpp-country-stats,
    .lpp-device-stats,
    .lpp-browser-stats {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
        margin-bottom: 20px;
    }

    .lpp-analytics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .lpp-device-browser-stats {
        grid-template-columns: 1fr;
    }
}

/* Simplified Contact Form Layout */
.lpp-contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.lpp-contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.lpp-contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lpp-contact-form-container > p {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.lpp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

/* Remove the two-column layout for simplified form */
.lpp-form-row {
    display: block;
}

/* Responsive adjustments for simplified contact form */
@media (max-width: 768px) {
    .lpp-contact-form-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin: 0 1rem;
    }
    
    .lpp-contact-form-container h2 {
        font-size: 1.75rem;
    }
    
    .lpp-contact-form-container > p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .lpp-contact-form-container {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .lpp-contact-form-container h2 {
        font-size: 1.5rem;
    }
}

/* Footer Styles */
.lpp-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 2rem 0;
    border-top: 1px solid var(--gray-800);
}

.lpp-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.lpp-footer-content p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.8;
}

.lpp-footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lpp-github-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-700);
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.lpp-github-link:hover {
    color: var(--white);
    border-color: var(--gray-500);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lpp-github-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.lpp-github-link:hover .lpp-github-icon {
    transform: scale(1.2);
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .lpp-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .lpp-footer-content p {
        order: 2;
    }
    
    .lpp-footer-links {
        order: 1;
    }
}

@media (max-width: 480px) {
    .lpp-footer {
        padding: 1.5rem 0;
    }
    
    .lpp-github-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }
}

/* Add subtle animation for the footer */
.lpp-footer {
    position: relative;
    overflow: hidden;
}

.lpp-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: footerShimmer 4s ease-in-out infinite;
}

@keyframes footerShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* GitHub link tracking for analytics */
.lpp-github-link::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lpp-github-link {
    position: relative;
}

.lpp-github-link:hover::after {
    opacity: 0.3;
}

@media (max-width: 480px) {
    .lpp-hero-content h1 {
        font-size: 2rem;
    }

    .lpp-hero-content h2 {
        font-size: 1.2rem;
    }

    .lpp-hero-content p {
        font-size: 1rem;
    }

    .lpp-stat-number {
        font-size: 2rem;
    }

    .lpp-hero-visual {
        margin-top: 2rem;
    }
}

/* Enhanced Donation Section Styling */
.lpp-support-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.lpp-support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" width="40" height="40" patternUnits="userSpaceOnUse"><text x="20" y="25" font-size="16" text-anchor="middle" fill="rgba(220,38,54,0.1)">💝</text></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    opacity: 0.3;
}

.lpp-support-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lpp-support-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lpp-support-info p {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.lpp-donation-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lpp-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.lpp-benefit:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
}

.lpp-benefit-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.lpp-benefit h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.lpp-benefit p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.4;
}

.lpp-donation-container {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.lpp-donation-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: donationGradient 3s ease infinite;
}

@keyframes donationGradient {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.lpp-donation-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.lpp-donation-card > p {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.lpp-donate-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: linear-gradient(135deg, var(--success-color), #34d399);
    color: var(--white);
    padding: 1.75rem 2rem;
    border: none;
    border-radius: 16px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 80px;
    justify-content: center;
    gap: 0.5rem;
}

.lpp-donate-btn .lpp-btn-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.lpp-donate-btn .lpp-btn-subtext {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.lpp-donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.lpp-donate-btn:hover::before {
    left: 100%;
}

.lpp-donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
}

.lpp-donation-features {
    margin-bottom: 1.5rem;
}

.lpp-donation-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.lpp-feature-check {
    width: 20px;
    height: 20px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.lpp-donation-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-500);
    font-style: italic;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 0;
}

/* Mobile responsive donation section */
@media (max-width: 1024px) {
    .lpp-support-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .lpp-support-info h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .lpp-support-section {
        padding: 4rem 1rem;
    }

    .lpp-donation-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .lpp-support-info h2 {
        font-size: 2rem;
    }

    .lpp-support-info p {
        font-size: 1.1rem;
    }

    .lpp-benefit {
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .lpp-donation-container {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .lpp-donation-card h3 {
        font-size: 1.5rem;
    }

    .lpp-support-info h2 {
        font-size: 1.75rem;
    }

    .lpp-benefit {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .lpp-benefit-icon {
        font-size: 1.5rem;
    }
}
