/* Landing Page Specific Styles */

/* Root level reset for landing page - minimal overrides only */
.landing-page * {
    /* Inherit from main styles */
}

/* Landing page specific background */
.landing-page {
    background: white;
}

/* Main content wrapper for proper footer spacing */
.landing-page {
    display: flex;
    flex-direction: column;
}

/* Ensure sections don't interfere with flex layout */
.landing-page section {
    width: 100%;
    position: relative;
    display: block;
}

/* Landing page body background */
body.landing-page {
    background: white !important;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Container styles for landing page */
.landing-page .container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Reset margins for consistent spacing */
.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page h5,
.landing-page h6,
.landing-page p {
    margin: 0;
    padding: 0;
}

/* Override any flex styles that might affect layout */
.landing-page .features-section,
.landing-page .benefits-section,
.landing-page .how-section,
.landing-page .testimonials-section,
.landing-page .pricing-section,
.landing-page .cta-section,
.landing-page .trusted-section {
    display: block;
}

/* Landing Navigation */
.landing-nav {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.landing-nav.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.landing-nav .nav-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 20px !important;
    min-height: auto !important;
    flex: initial !important;
}

.landing-nav .nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-cta {
    padding: 10px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 80px);
    width: 100%;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 24px 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 0 32px 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* Dashboard Preview */
.hero-visual {
    width: 100%;
    max-width: 800px;
}

.dashboard-preview {
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
    min-height: 400px;
}

.dashboard-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-4px);
    box-shadow: 0 24px 70px rgba(0,0,0,0.18);
}

.placeholder-dashboard {
    padding: 20px;
    background: #f8f9fa;
    height: 400px;
}

.preview-header {
    background: white;
    padding: 12px 16px;
    border-radius: 8px 8px 0 0;
    margin: -20px -20px 20px;
}

.preview-dots {
    display: flex;
    gap: 8px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

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

.preview-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
}

.preview-sidebar {
    background: white;
    height: 300px;
    border-radius: 8px;
}

.preview-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.preview-card {
    background: white;
    height: 120px;
    border-radius: 8px;
}

/* Trusted Section */
.trusted-section {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.trusted-label {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 12px 24px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #adb5bd;
    font-size: 14px;
    font-weight: 500;
}

/* Container style already defined at top of file */

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll offset for fixed navigation */
section[id] {
    scroll-margin-top: 80px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 16px 0;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-text {
    text-align: center;
    max-width: 800px;
}

.benefits-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.benefits-visual {
    width: 100%;
    max-width: 600px;
}

.metric-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.metric-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.metric-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* How It Works Section */
.how-section {
    padding: 80px 0;
    background: white;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    font-size: 32px;
    color: #dee2e6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    background: white;
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

/* With only 2 plans, ensure they're centered and sized well */
@media (min-width: 768px) {
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 20px;
}

.currency {
    font-size: 24px;
    color: var(--text-light);
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
}

.period {
    font-size: 18px;
    color: var(--text-light);
}

.plan-description {
    color: var(--text-light);
    margin-bottom: 32px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 28px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.plan-cta {
    display: block;
    width: 100%;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.plan-cta.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.plan-cta.secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 100px 0 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.btn-primary.large,
.btn-secondary.large {
    padding: 16px 40px;
    font-size: 18px;
}

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

.btn-secondary.large:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-note {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-container {
        /* Already using flex column layout */
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .dashboard-preview {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .benefits-content {
        /* Already using flex column layout */
        gap: 40px;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .features-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .trusted-logos {
        gap: 20px;
    }
}

/* Footer responsive styles are now in styles.css for consistency */

/* Removed landing page specific footer styles to ensure consistency across all pages */

/* Ensure proper spacing between last section and footer */
.landing-page .cta-section {
    margin-bottom: 0;
    padding-bottom: 80px;
}

/* Fix container consistency across all sections */
.landing-page section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Ensure all sections have consistent vertical padding */
.landing-page .features-section,
.landing-page .benefits-section,
.landing-page .how-section,
.landing-page .testimonials-section,
.landing-page .pricing-section {
    padding: 80px 0;
}

/* Fix the hero section to use consistent container */
.landing-page .hero-section .hero-container {
    padding: 0 20px;
}

/* Ensure trusted section has proper spacing */
.landing-page .trusted-section {
    padding: 60px 0;
}

/* Force footer on landing page to use global styles */
.landing-page .site-footer,
.landing-page .footer-container,
.landing-page .footer-content,
.landing-page .footer-section,
.landing-page .footer-links,
.landing-page .footer-social,
.landing-page .footer-bottom,
.landing-page .footer-bottom-content,
.landing-page .footer-legal {
    all: unset;
    display: revert;
    box-sizing: border-box;
}

/* Re-apply global classes for layout */
.landing-page .site-footer {
    background: #1a1a1a;
    color: #e0e0e0;
    font-size: 14px;
    margin-top: auto;
}
.landing-page .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.landing-page .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 40px 0 30px;
}
.landing-page .footer-section h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}
.landing-page .footer-company {
    max-width: 320px;
}
.landing-page .footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}
.landing-page .footer-description {
    line-height: 1.6;
    margin-bottom: 16px;
    color: #b0b0b0;
}
.landing-page .footer-social {
    display: flex;
    gap: 12px;
}
.landing-page .footer-social a {
    width: 36px;
    height: 36px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    transition: all 0.3s ease;
}
.landing-page .footer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}
.landing-page .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.landing-page .footer-links li {
    margin-bottom: 10px;
}
.landing-page .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.landing-page .footer-links a:hover {
    color: white;
}
.landing-page .footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 20px 0;
}
.landing-page .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.landing-page .footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
}
.landing-page .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.landing-page .footer-legal a:hover {
    color: white;
}
.landing-page .footer-separator {
    color: #606060;
}

@media (max-width: 968px) {
    .landing-page .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .landing-page .footer-company {
        grid-column: span 2;
        max-width: none;
    }
}
@media (max-width: 640px) {
    .landing-page .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0 20px;
    }
    .landing-page .footer-company {
        grid-column: span 1;
    }
    .landing-page .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .landing-page .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

 