/* Marketing-specific styles for new public pages */

:root {
    --primary-color: #3f51b5;
    --secondary-color: #ff6e40;
    --gradient-primary-start: #667eea;
    --gradient-primary-end: #764ba2;
    --dark-text: #37474f;
    --success-color: #2ed573;
}

/* Override body styling for marketing pages */
body.marketing {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--gradient-primary-start) 0%, var(--gradient-primary-end) 100%);
    min-height: 100vh;
}

/* Glass morphism containers */
.wizard-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.2);
    padding: 60px;
    margin: 60px 0;
}

/* Gradient buttons */
.btn-gradient-primary {
    background: linear-gradient(135deg, var(--gradient-primary-start), var(--gradient-primary-end));
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--dark-text);
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    color: var(--dark-text);
    text-decoration: none;
}

/* Hero sections */
.hero-marketing {
    padding: 120px 20px 80px;
    text-align: center;
}

.page-hero {
    background: #ffffff;
    padding: 120px 20px 80px;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-marketing h1,
.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-text);
    line-height: 1.1;
}

.hero-marketing p,
.page-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #6b7280;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section styling */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--dark-text);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 60px;
}

.content-section {
    padding: 80px 20px;
    background: white;
}

.content-section:nth-child(even) {
    background: #f9fafb;
}

/* Feature grids */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Screenshots section */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.screenshot-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.screenshot-mockup {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.sentiment-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.badge-positive {
    background: var(--success-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.badge-negative {
    background: #ef4444;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.opportunities-list {
    text-align: left;
    font-size: 12px;
    color: var(--success-color);
}

.price-chart {
    display: flex;
    gap: 20px;
    font-size: 11px;
    justify-content: center;
}

.price-bar {
    text-align: center;
}

.bar {
    background: var(--gradient-primary-start);
    width: 20px;
    margin-bottom: 5px;
    border-radius: 4px;
}

.screenshot-card .content {
    padding: 20px;
}

.screenshot-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.screenshot-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Process steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #1f2937;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 20px 0 15px;
    color: #1f2937;
}

.process-step p {
    color: #6b7280;
    line-height: 1.7;
}

/* Benefits list */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
}

.benefit-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Feature highlights */
.feature-highlight {
    background: #f9fafb;
    padding: 60px 20px;
    text-align: center;
    margin: 80px 0;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.feature-highlight h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1f2937;
}

.feature-highlight p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Analysis features */
.monitoring-features,
.analysis-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.analysis-card {
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.analysis-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.analysis-card ul {
    list-style: none;
    padding: 0;
}

.analysis-card ul li {
    padding: 8px 0;
    color: #6b7280;
    position: relative;
    padding-left: 25px;
}

.analysis-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Alerts section */
.alerts-section {
    background: #f9fafb;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0;
    border: 1px solid #e5e7eb;
}

.alerts-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1f2937;
}

.alerts-section p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 40px;
}

.alerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.alert-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.alert-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f2937;
}

.alert-item p {
    font-size: 0.9rem;
    color: #6b7280;
}

/* CTA sections */
.cta-section {
    background: #1f2937;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: #ffffff;
    color: #1f2937;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    color: #1f2937;
    text-decoration: none;
}

/* Barcelona focus */
.barcelona-focus {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.barcelona-focus p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-box {
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.contact-box h3 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-box p {
    color: #6b7280;
    margin-bottom: 20px;
}

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

.animate-slide-up {
    animation: slideInUp 0.6s ease-out;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-marketing h1,
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .hero-marketing p,
    .page-hero p {
        font-size: 1.1rem;
    }

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

    .features-grid,
    .monitoring-features,
    .analysis-features {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .wizard-container {
        padding: 40px 30px;
    }

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

    .alerts-grid {
        grid-template-columns: 1fr;
    }

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