/*
 * MarketSnap Landing Page - Google Ads Conversion
 * Optimized for conversions, mobile-responsive, clean modern design
 * URL: marketsnap.com/start
 */

/* ===================================
   GLOBAL & CONTAINER
   =================================== */
.marketsnap-landing-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #1a1f24;
    color: #e5e7eb;
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
}

.marketsnap-landing-page * {
    box-sizing: border-box;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background: linear-gradient(135deg, #ffe245 0%, #f59e0b 100%);
    color: #1a1f24;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 0 0 40px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.cta-button.primary {
    background: linear-gradient(135deg, #e9e9e9 0%, #c0c0c0 100%);
    color: #1a1f24;
    border-color: #333;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #f5f5f5 0%, #d4d4d4 100%);
    border-color: #444;
}

.cta-button.secondary {
    background: linear-gradient(314deg, #1a1f24 0%, #4c5563 100%);
    color: #e5e7eb;
    border-color: #3a3f45;
}

.cta-button.secondary:hover {
    background: linear-gradient(314deg, #23282d 0%, #5a6470 100%);
    border-color: #F59E0B;
    color: #F59E0B;
}

.cta-button.large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

.hero-trust {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 15px 0 0;
}

/* ===================================
   SECTIONS
   =================================== */
.features-section,
.apps-section,
.pricing-section,
.stats-section,
.cta-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px;
    color: #e5e7eb;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin: 0;
}

/* ===================================
   FEATURES GRID
   =================================== */
.features-section {
    background: #1a1f24;
}

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

.feature-card-link {
    text-decoration: none;
    color: #e5e7eb;
    display: block;
}

.feature-card-link:visited {
    color: #e5e7eb;
}

.feature-card-link:hover {
    color: #f3f4f6;
}

.feature-card {
    background: linear-gradient(314deg, #1a1f24 0%, #2d3748 100%);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid #374151;
}

.feature-card-link:hover .feature-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 15px;
    color: #e5e7eb;
}

.feature-description {
    font-size: 1rem;
    color: #cbd5e1;
    margin: 0 0 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #d1d5db;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.feature-note {
    margin: 15px 0 0;
    padding: 8px 12px;
    background: #374151;
    border-radius: 6px;
    color: #fbbf24;
    font-size: 0.85rem;
    border-left: 3px solid #f59e0b;
}

/* ===================================
   APPS GRID
   =================================== */
.apps-section {
    background: #1a1f24;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.app-card {
    background: linear-gradient(314deg, #1a1f24 0%, #2d3748 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #374151;
}

.app-card:hover {
    border-color: currentColor;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.app-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #e5e7eb;
}

.app-description {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin: 0 0 20px;
    line-height: 1.6;
}

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

.app-features li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: #d1d5db;
    font-size: 0.9rem;
}

.app-features li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #9ca3af;
    font-weight: bold;
}

.app-download-btn {
    display: inline-block;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.app-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* App-specific colors */
.nexus-app { border-color: #3b82f6; }
.nexus-color { background: #3b82f6; }
.nexus-color:hover { background: #2563eb; }

.calendar-app { border-color: #10b981; }
.calendar-color { background: #10b981; }
.calendar-color:hover { background: #059669; }

.media-app { border-color: #f59e0b; }
.media-color { background: #f59e0b; }
.media-color:hover { background: #d97706; }

.intrinsic-app { border-color: #8b5cf6; }
.intrinsic-color { background: #8b5cf6; }
.intrinsic-color:hover { background: #7c3aed; }

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
    background: #1a1f24;
}

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

.pricing-card {
    background: linear-gradient(314deg, #1a1f24 0%, #2d3748 100%);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #374151;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #f59e0b;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.3);
    transform: scale(1.05);
}

.pricing-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.plan-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #374151;
    color: #e5e7eb;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge.popular {
    background: linear-gradient(135deg, #ffe245 0%, #f59e0b 100%);
    color: #1a1f24;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 20px;
    color: #e5e7eb;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 30px;
    color: #e5e7eb;
}

.plan-price span {
    font-size: 1.2rem;
    font-weight: 500;
    color: #cbd5e1;
}

.plan-price-alt {
    font-size: 1rem;
    color: #cbd5e1;
    margin: -15px 0 30px;
    font-weight: 500;
}

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

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #374151;
    color: #d1d5db;
    font-size: 0.95rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 16px 30px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.free-button {
    background: #374151;
    color: #e5e7eb;
}

.free-button:hover {
    background: #4b5563;
}

.premium-button {
    background: linear-gradient(135deg, #ffe245 0%, #f59e0b 100%);
    color: #1a1f24;
}

.premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.plan-note {
    margin: 15px 0 0;
    font-size: 0.85rem;
    color: #9ca3af;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    background: #1a1f24;
    color: #e5e7eb;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.cta-section {
    background: #1a1f24;
    text-align: center;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px;
    color: #e5e7eb;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin: 0 0 40px;
    line-height: 1.7;
}

.cta-buttons {
    margin-bottom: 25px;
}

.cta-trust {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin: 0;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .features-section,
    .apps-section,
    .pricing-section,
    .stats-section,
    .cta-section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid,
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .app-card {
        padding: 30px 20px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
}

/* ===================================
   SMOOTH SCROLL
   =================================== */
html {
    scroll-behavior: smooth;
}

/* ===================================
   ACCESSIBILITY
   =================================== */
.cta-button:focus,
.app-download-btn:focus,
.plan-button:focus {
    outline: 3px solid #f59e0b;
    outline-offset: 2px;
}

