/* Landing Page - Lead Capture */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --dark-bg: #1e293b;
    --light-bg: #f8fafc;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --primary-color: #4adedd;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* General Styles */
.landing-page {
    font-family: 'Inter', 'Roboto', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

.landing-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.lp-hero {
    min-height: 100vh;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.lp-hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.lp-hero-text h1 .highlight {
    background: linear-gradient(120deg, var(--primary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.lp-benefit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.lp-benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lp-benefit-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.lp-benefit-tag i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Form Card */
.lp-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.lp-form-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
}

.lp-form-card .subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
}

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

.lp-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.lp-form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lp-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.lp-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--text-dark);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.lp-submit-btn:active {
    transform: translateY(0);
}

.lp-form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.lp-form-note i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* Benefits Section */
.lp-benefits {
    padding: 100px 20px;
    background: var(--light-bg);
}

.lp-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.lp-section-title h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 15px;
}

.lp-section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.lp-benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.lp-benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.lp-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.lp-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.lp-benefit-card:hover::before {
    transform: scaleX(1);
}

.lp-benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.lp-benefit-card:hover .lp-benefit-icon {
    transform: rotateY(360deg);
}

.lp-benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.lp-benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Content Section */
.lp-content {
    padding: 100px 20px;
    background: var(--white);
}

.lp-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lp-content-list {
    list-style: none;
}

.lp-content-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.lp-content-item:hover {
    background: #eef2ff;
    transform: translateX(10px);
}

.lp-content-item .icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    margin-top: 2px;
}

.lp-content-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.lp-content-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.lp-content-preview {
    position: relative;
}

.lp-preview-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Social Proof Section */
.lp-social-proof {
    padding: 100px 20px;
    background: var(--dark-bg);
    color: var(--white);
}

.lp-stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.lp-stat-item {
    text-align: center;
}

.lp-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--light-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.lp-stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.lp-testimonials {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.lp-testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-style: italic;
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lp-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.lp-testimonial-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.lp-testimonial-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Trust Section */
.lp-trust {
    padding: 80px 20px;
    background: var(--light-bg);
}

.lp-trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lp-trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.lp-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.lp-trust-badge i {
    font-size: 3rem;
    color: var(--primary-color);
}


.lp-trust-badge p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* CTA Section */
.lp-final-cta {
    padding: 100px 20px;
    background: var(--gradient-1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--primary-color);
    background-size: 50px 50px;
    animation: pulse 15s linear infinite;
}

@keyframes pulse {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.lp-final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lp-final-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.lp-final-cta p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.lp-cta-btn {
    display: inline-block;
    padding: 20px 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.lp-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .lp-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-hero-text h1 {
        font-size: 2.5rem;
    }

    .lp-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .lp-hero {
        padding: 60px 20px 40px;
    }

    .lp-hero-text h1 {
        font-size: 2rem;
    }

    .lp-hero-text p {
        font-size: 1.1rem;
    }

    .lp-form-card {
        padding: 30px 20px;
    }

    .lp-section-title h2 {
        font-size: 2rem;
    }

    .lp-benefits-grid {
        grid-template-columns: 1fr;
    }

    .lp-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lp-testimonials {
        grid-template-columns: 1fr;
    }

    .lp-final-cta h2 {
        font-size: 2rem;
    }

    .lp-final-cta p {
        font-size: 1.1rem;
    }
}

/* Utility Classes */
.aos-init {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.aos-animate {
    opacity: 1;
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
