/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    color: #1a2332;
}

h2 {
    font-size: 2.5rem;
    color: #1a2332;
}

h3 {
    font-size: 1.75rem;
    color: #1a2332;
}

h4 {
    font-size: 1.25rem;
    color: #1a2332;
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #ff6b5a;
    color: white;
}

.btn-primary:hover {
    background-color: #e55a4a;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: #14b8a6;
    border: 2px solid #14b8a6;
}

.btn-secondary:hover {
    background-color: #14b8a6;
    color: white;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2332;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    color: white;
    padding: 100px 0;
    min-height: 90vh;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cbd5e0;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.hero-image,
.placeholder-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.placeholder-image {
    background: #2d3748;
    border: 2px solid #14b8a6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    font-weight: 600;
}

.preview-image img,
.predictive-image img,
.experiment-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Features Overview */
.features-overview {
    padding: 100px 0;
    background-color: #f8fafc;
}

.centered-section {
    text-align: center;
}

.centered-section .container > * {
    text-align: center;
}

.centered-section .preview-content,
.centered-section .predictive-content,
.centered-section .experiment-content {
    text-align: left;
}

.features-overview h2 {
    margin-bottom: 3rem;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #f0fdfa;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1a2332;
}

/* Dashboard Preview */
.dashboard-preview {
    padding: 100px 0;
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #14b8a6;
    font-weight: bold;
}

/* Player Insights */
.player-insights {
    padding: 100px 0;
    background-color: #f8fafc;
}

.player-insights h2 {
    margin-bottom: 3rem;
}

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

.insight-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.placeholder-chart {
    background: #f1f5f9;
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    margin-top: 20px;
}

/* Predictive Analytics */
.predictive-analytics {
    padding: 100px 0;
}

.predictive-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.predictive-features {
    margin-top: 2rem;
}

.predictive-feature {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.predictive-feature:last-child {
    border-bottom: none;
}

/* Integrations */
.integrations {
    padding: 100px 0;
    background-color: #f8fafc;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.integration-item {
    background: white;
    padding: 24px 16px;
    border-radius: 12px;
    font-weight: 600;
    color: #1a2332;
    border: 2px solid #e2e8f0;
}

/* Products */
.products {
    padding: 100px 0;
}

.products h2,
.products .section-subtitle {
    margin-bottom: 2rem;
}

.products .section-subtitle {
    margin-bottom: 4rem;
}

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

.product-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    text-align: center;
    position: relative;
}

.product-card.featured {
    border-color: #ff6b5a;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b5a;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2332;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.product-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.product-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.product-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #14b8a6;
    font-weight: bold;
}

/* Experiments */
.experiments {
    padding: 100px 0;
    background-color: #f8fafc;
}

.experiment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    color: white;
}

.contact h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #14b8a6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cbd5e0;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: white;
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #14b8a6;
}

/* Footer */
.footer {
    background-color: #1a2332;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-brand .brand {
    margin-bottom: 1rem;
}

.footer-brand .brand-name {
    color: white;
}

.footer-brand p {
    color: #cbd5e0;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #14b8a6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        min-height: auto;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 70vh;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .preview-content,
    .predictive-content,
    .experiment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}