/* Landing page specific styles - ENHANCED PROFESSIONAL DESIGN */

/* Hero Section - Modern Premium Design */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite;
}

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

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.02) rotate(1deg);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-left h1 {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.header-nav {
    display: flex;
    gap: 1.5rem;
}

.header-nav .nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dark-mode .header-nav .nav-link {
    color: var(--text-dark);
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-btn {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-light);
}

.dark-mode .login-btn {
    color: var(--text-dark);
    border-color: var(--border-dark);
}

.signup-btn {
    background: var(--primary-gradient);
    color: white;
}

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

.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
}

.dark-mode .landing-header {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid var(--border-dark);
}

/* Main content spacing for fixed header */
main {
    margin-top: 80px;
}

/* Ensure landing page sections have proper background */
.landing-hero,
.landing-problems,
.landing-solutions,
.landing-benefits,
.landing-features,
.landing-use-cases,
.landing-comparison,
.landing-metrics,
.landing-testimonial,
.landing-faq,
.landing-dashboard-preview,
.landing-cta {
    width: 100%;
}

/* Add alternating background colors for better visual separation */
.landing-problems,
.landing-benefits,
.landing-metrics,
.landing-faq {
    background: var(--card-light);
}

.dark-mode .landing-problems,
.dark-mode .landing-benefits,
.dark-mode .landing-metrics,
.dark-mode .landing-faq {
    background: var(--card-dark);
}

.landing-solutions,
.landing-features,
.landing-use-cases,
.landing-dashboard-preview {
    background: transparent;
}

/* Ensure testimonials have proper styling */
.landing-testimonial {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(156, 39, 176, 0.05));
}

.dark-mode .landing-testimonial {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(156, 39, 176, 0.1));
}

/* CTA section styling */
.landing-cta {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(156, 39, 176, 0.1));
    border-radius: 16px;
    margin-bottom: 2rem;
}

.dark-mode .landing-cta {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(156, 39, 176, 0.15));
}

/* Landing Hero Section */
.landing-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(156, 39, 176, 0.1));
    text-align: center;
    min-height: auto;
}

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

.landing-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    font-weight: 700;
}

.landing-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--text-light);
}

.dark-mode .landing-hero-content p {
    color: var(--text-dark);
}

.hero-subtext {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.7;
    color: var(--text-light);
}

.dark-mode .hero-subtext {
    color: var(--text-dark);
}

.landing-problems,
.landing-solutions,
.landing-benefits,
.landing-features,
.landing-use-cases,
.landing-comparison,
.landing-metrics,
.landing-testimonial,
.landing-faq,
.landing-dashboard-preview,
.landing-cta {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Headings - Consistent across all pages */
.landing-problems h2,
.landing-solutions h2,
.landing-benefits h2,
.landing-features h2,
.landing-use-cases h2,
.landing-comparison h2,
.landing-metrics h2,
.landing-testimonial h2,
.landing-faq h2,
.landing-dashboard-preview h2,
.landing-cta h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
}

.dark-mode .landing-problems h2,
.dark-mode .landing-solutions h2,
.dark-mode .landing-benefits h2,
.dark-mode .landing-features h2,
.dark-mode .landing-use-cases h2,
.dark-mode .landing-comparison h2,
.dark-mode .landing-metrics h2,
.dark-mode .landing-testimonial h2,
.dark-mode .landing-faq h2,
.dark-mode .landing-dashboard-preview h2,
.dark-mode .landing-cta h2 {
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: -2rem auto 3rem;
    opacity: 0.9;
    color: var(--text-light);
    line-height: 1.6;
}

.dark-mode .section-intro {
    color: var(--text-dark);
}

/* Benefits Section - Enhanced Design */
.benefits {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(156, 39, 176, 0.05));
}

.dark-mode .benefits {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(156, 39, 176, 0.1));
}

.benefits h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.benefits .section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    color: var(--text-light);
    line-height: 1.6;
}

.dark-mode .benefits .section-intro {
    color: var(--text-dark);
}

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

.benefit-card {
    background: linear-gradient(135deg, var(--card-light) 0%, rgba(106, 27, 154, 0.03) 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.dark-mode .benefit-card {
    background: linear-gradient(135deg, var(--card-dark) 0%, rgba(106, 27, 154, 0.08) 100%);
    border-color: var(--border-dark);
}

/* Animated bar chart background */
.benefit-chart {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    padding: 0 2rem;
    opacity: 0.15;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.benefit-card:hover .benefit-chart {
    opacity: 0.25;
}

.chart-bar {
    width: 20px;
    height: var(--height);
    background: var(--primary-gradient);
    border-radius: 4px 4px 0 0;
    animation: barBounce 2s ease-in-out infinite;
    animation-delay: var(--delay);
    position: relative;
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 4px 4px 0 0;
}

@keyframes barBounce {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.6);
    }
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.dark-mode .benefit-card:hover {
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 16px rgba(106, 27, 154, 0.2);
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 24px rgba(106, 27, 154, 0.3);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.dark-mode .benefit-card h3 {
    color: var(--text-dark);
}

.benefit-card:hover h3 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.benefit-card p {
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.dark-mode .benefit-card p {
    color: var(--text-dark);
}

.benefit-link {
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-link a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.benefit-link a:hover::after {
    width: 100%;
}

.benefit-link a:hover {
    gap: 0.8rem;
}

.benefit-link i {
    transition: transform 0.3s ease;
}

.benefit-link a:hover i {
    transform: translateX(4px);
}

/* Hover lift animation */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive for benefits */
@media (max-width: 768px) {
    .benefits {
        padding: 4rem 1.5rem;
    }
    
    .benefits h2 {
        font-size: 1.8rem;
    }
    
    .benefits .section-intro {
        font-size: 1.1rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon i {
        font-size: 1.75rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
}

/* Use Cases Section - Enhanced Design */
.use-cases {
    padding: 6rem 2rem;
    background: var(--card-light);
}

.dark-mode .use-cases {
    background: var(--card-dark);
}

.use-cases h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.use-cases .section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    color: var(--text-light);
    line-height: 1.6;
}

.dark-mode .use-cases .section-intro {
    color: var(--text-dark);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case {
    background: var(--card-light);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.dark-mode .use-case {
    background: var(--card-dark);
    border-color: var(--border-dark);
}

.use-case::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.use-case:hover::before {
    transform: scaleX(1);
}

.use-case:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.dark-mode .use-case:hover {
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 16px rgba(106, 27, 154, 0.2);
}

.use-case:hover .use-case-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 24px rgba(106, 27, 154, 0.3);
}

.use-case-icon i {
    font-size: 2rem;
    color: white;
}

.use-case h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.dark-mode .use-case h3 {
    color: var(--text-dark);
}

.use-case:hover h3 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.use-case p {
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
}

.dark-mode .use-case p {
    color: var(--text-dark);
}

/* Responsive for use-cases */
@media (max-width: 768px) {
    .use-cases {
        padding: 4rem 1.5rem;
    }
    
    .use-cases h2 {
        font-size: 1.8rem;
    }
    
    .use-cases .section-intro {
        font-size: 1.1rem;
    }
    
    .use-case {
        padding: 2rem 1.5rem;
    }
    
    .use-case-icon {
        width: 70px;
        height: 70px;
    }
    
    .use-case-icon i {
        font-size: 1.75rem;
    }
    
    .use-case h3 {
        font-size: 1.4rem;
    }
}
.problems-grid,
.solutions-grid,
.benefits-grid,
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.problem-card,
.solution-card,
.benefit-card,
.use-case {
    background: var(--card-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.dark-mode .problem-card,
.dark-mode .solution-card,
.dark-mode .benefit-card,
.dark-mode .use-case {
    background: var(--card-dark);
    border-color: var(--border-dark);
}

.problem-card:hover,
.solution-card:hover,
.benefit-card:hover,
.use-case:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.problem-card h3,
.solution-card h3,
.benefit-card h3,
.use-case h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--text-light);
}

.dark-mode .problem-card h3,
.dark-mode .solution-card h3,
.dark-mode .benefit-card h3,
.dark-mode .use-case h3 {
    color: var(--text-dark);
}

.problem-card p,
.solution-card p,
.benefit-card p,
.use-case p {
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
}

.dark-mode .problem-card p,
.dark-mode .solution-card p,
.dark-mode .benefit-card p,
.dark-mode .use-case p {
    color: var(--text-dark);
}

.solution-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    text-align: center;
}

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

.dark-mode .solution-card p {
    color: var(--text-dark);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-light);
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.dark-mode .feature-item {
    background: var(--card-dark);
    border-color: var(--border-dark);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
}

/* Comparison Table */
.comparison-table {
    background: var(--card-light);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    margin-top: 2rem;
}

.dark-mode .comparison-table {
    background: var(--card-dark);
    border-color: var(--border-dark);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    padding: 1rem 1.5rem;
    gap: 1rem;
}

.comparison-header {
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
}

.comparison-row {
    border-top: 1px solid var(--border-light);
}

.dark-mode .comparison-row {
    border-color: var(--border-dark);
}

.rs-col {
    color: var(--primary-color);
    font-weight: 600;
}

.rs-col i {
    color: #4caf50;
    margin-right: 0.5rem;
}

.other-col i.fa-times {
    color: #f44336;
}

.other-col i.fa-minus {
    color: #ff9800;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.metric-category {
    background: var(--card-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.dark-mode .metric-category {
    background: var(--card-dark);
    border-color: var(--border-dark);
}

.metric-category h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.metric-category ul {
    list-style: none;
    padding: 0;
}

.metric-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.metric-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Testimonial */
.landing-testimonial {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(156, 39, 176, 0.05));
    padding: 4rem 2rem;
}

.dark-mode .landing-testimonial {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(156, 39, 176, 0.1));
}

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

.testimonial-content blockquote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-light);
}

.dark-mode .testimonial-content blockquote {
    color: var(--text-dark);
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.8;
    color: var(--text-light);
}

.dark-mode .testimonial-author {
    color: var(--text-dark);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
}

.dark-mode .faq-item {
    background: var(--card-dark);
    border-color: var(--border-dark);
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--text-light);
}

.dark-mode .faq-item h3 {
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
}

.dark-mode .faq-item p {
    color: var(--text-dark);
}

/* Dashboard Preview */
.dashboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.dashboard-feature {
    text-align: center;
    padding: 2rem;
}

.dashboard-feature i {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.dashboard-feature h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* CTA Button - Consistent across all landing pages */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 8px 20px rgba(106, 27, 154, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 28px rgba(106, 27, 154, 0.4);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.1);
}

/* Pulse animation for CTA */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.pulse-animation:hover {
    animation: none;
}

/* Homepage CTA Section - Enhanced */
.cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(156, 39, 176, 0.1));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(106, 27, 154, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(106, 27, 154, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.cta-icon i {
    font-size: 2.5rem;
    color: white;
}

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

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.dark-mode .cta p {
    color: var(--text-dark);
}

.cta .cta-button {
    margin-bottom: 1.5rem;
}

.cta-subtext {
    font-size: 1rem;
    margin-top: 1.5rem;
    opacity: 0.8;
    color: var(--text-light);
}

.dark-mode .cta-subtext {
    color: var(--text-dark);
}

/* Responsive for CTA */
@media (max-width: 768px) {
    .cta {
        padding: 4rem 1.5rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
    }
    
    .cta-icon i {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }
}

/* Landing Page CTA Section */
.landing-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(156, 39, 176, 0.1));
    padding: 4rem 2rem;
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 1200px;
}

.dark-mode .landing-cta {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(156, 39, 176, 0.15));
}

.landing-cta h2 {
    margin-bottom: 1.5rem;
}

.landing-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.dark-mode .landing-cta p {
    color: var(--text-dark);
}

.cta-subtext {
    font-size: 0.95rem;
    margin-top: 1rem;
    opacity: 0.7;
    color: var(--text-light);
}

.dark-mode .cta-subtext {
    color: var(--text-dark);
}

/* Footer styling for landing pages - Match homepage exactly */
footer {
    background: var(--card-light);
    border-top: 1px solid var(--border-light);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    width: 100%;
}

.dark-mode footer {
    background: var(--card-dark);
    border-color: var(--border-dark);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.5;
}

.dark-mode .footer-brand p {
    color: var(--text-dark);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.dark-mode .footer-section h3 {
    color: var(--text-dark);
}

.footer-section a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
}

.dark-mode .footer-section a {
    color: var(--text-dark);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-section a i {
    margin-right: 0.5rem;
    width: 20px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.dark-mode .footer-bottom {
    border-color: var(--border-dark);
}

.footer-bottom p {
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.9rem;
}

.dark-mode .footer-bottom p {
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .landing-hero-content h1 {
        font-size: 2rem;
    }
    
    .landing-hero-content p {
        font-size: 1.1rem;
    }
    
    .landing-problems,
    .landing-solutions,
    .landing-benefits,
    .landing-features,
    .landing-use-cases,
    .landing-comparison,
    .landing-metrics,
    .landing-testimonial,
    .landing-faq,
    .landing-dashboard-preview,
    .landing-cta {
        padding: 3rem 1.5rem;
    }
    
    .landing-problems h2,
    .landing-solutions h2,
    .landing-benefits h2,
    .landing-features h2,
    .landing-use-cases h2,
    .landing-comparison h2,
    .landing-metrics h2,
    .landing-testimonial h2,
    .landing-faq h2,
    .landing-dashboard-preview h2,
    .landing-cta h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .header-nav {
        display: none;
    }
    
    .dashboard-header {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .landing-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.dark-mode .main-nav a {
    color: var(--text-dark);
}

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

.nav-button {
    background: var(--primary-gradient);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(156, 39, 176, 0.1));
}

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

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    opacity: 0.9;
}

.dark-mode .hero-text p {
    color: var(--text-dark);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image i {
    font-size: 20rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Features Section - Premium Card Design */
.features {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
}

.dark-mode .features {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.features h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.features .section-intro {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #64748b;
    line-height: 1.6;
}

.dark-mode .features .section-intro {
    color: #94a3b8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.dark-mode .feature-card {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.dark-mode .feature-card:hover {
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.feature-card i {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.feature-card h3 {
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.dark-mode .feature-card h3 {
    color: #f1f5f9;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
}

.dark-mode .feature-card p {
    color: #94a3b8;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(156, 39, 176, 0.05));
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.step-icon i {
    font-size: 2.5rem;
    color: white;
}

.step h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.dark-mode .step h3 {
    color: var(--text-dark);
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background: white;
}

.dark-mode .pricing {
    background: var(--background-dark);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.pricing-card {
    background: var(--card-light);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
}

.dark-mode .pricing-card {
    background: var(--card-dark);
    border-color: var(--border-dark);
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.featured-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    opacity: 0.7;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.pricing-card li {
    margin: 1rem 0;
    color: var(--text-light);
}

.dark-mode .pricing-card li {
    color: var(--text-dark);
}

.pricing-card i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.plan-button {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Footer */
.landing-footer {
    background: var(--card-light);
    padding: 4rem 2rem;
    border-top: 1px solid var(--border-light);
}

.dark-mode .landing-footer {
    background: var(--card-dark);
    border-color: var(--border-dark);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.footer-info h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.dark-mode .footer-info h3 {
    color: var(--text-dark);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: var(--transition);
}

.dark-mode .social-links a {
    color: var(--text-dark);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.dark-mode .footer-links a {
    color: var(--text-dark);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-image i {
        font-size: 12rem;
    }

    .header-content {
        padding: 1rem;
    }

    .main-nav {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-links {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: none;
    }
}

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

.hero-text, .feature-card, .step, .pricing-card {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Header styles matching journal page */
.dashboard-header {
    background: linear-gradient(135deg, #6c5ce7 0%, #a8a4e6 100%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-left h1 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.header-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-link i {
    font-size: 1rem;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    transform: translateY(-1px);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
}

.theme-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle i {
    font-size: 1.2rem;
}

/* Dark mode adjustments */
.dark-mode .dashboard-header {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-header {
        padding: 1rem;
    }

    .header-nav {
        display: none;
    }
} 