/* 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: #2C2C2C;
    background-color: #FFFFFF;
}

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

/* Header */
.header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    padding: 3rem 0;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0066FF;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    color: #64748B;
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    transition: all 0.2s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: #0066FF;
    border-color: #0066FF;
}

.btn-secondary:hover {
    background-color: #0066FF;
    color: white;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.integration-logo {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #F8FAFC;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #E5E7EB;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748B;
    line-height: 1.5;
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
    background-color: #FFFFFF;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #0066FF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.step p {
    color: #64748B;
    line-height: 1.5;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background-color: #F8FAFC;
    text-align: center;
}

.products h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 2px solid #E5E7EB;
    position: relative;
}

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

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.product-card p {
    color: #64748B;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.product-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.product-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066FF;
    font-weight: 700;
}

.btn-product {
    width: 100%;
    padding: 1rem;
    background-color: #0066FF;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.btn-product:hover {
    background-color: #0052CC;
}

/* Market Intelligence */
.market-intelligence {
    padding: 4rem 0;
    background-color: #FFFFFF;
    text-align: center;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
}

.text-content p {
    color: #64748B;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-content ul {
    list-style: none;
}

.text-content li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #64748B;
}

.text-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066FF;
    font-weight: 700;
}

.visual-content .placeholder-image {
    height: 300px;
    width: 100%;
}

/* Compliance Section */
.compliance {
    padding: 4rem 0;
    background-color: #F8FAFC;
    text-align: center;
}

.compliance h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 3rem;
}

.compliance-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.compliance-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #E5E7EB;
}

.compliance-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

.compliance-icon svg {
    width: 100%;
    height: 100%;
}

.compliance-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 0.75rem;
}

.compliance-item p {
    color: #64748B;
    line-height: 1.5;
}

/* Integrations */
.integrations {
    padding: 4rem 0;
    background-color: #FFFFFF;
    text-align: center;
}

.integrations h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.integrations p {
    font-size: 1.125rem;
    color: #64748B;
    margin-bottom: 3rem;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.integration-logo {
    height: 120px;
    border-radius: 8px;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background-color: #F8FAFC;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #E5E7EB;
}

.testimonial-card p {
    font-size: 1.125rem;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author strong {
    color: #2C2C2C;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #64748B;
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: #FFFFFF;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #64748B;
    line-height: 1.6;
}

.contact-form-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.contact-form-section p {
    color: #64748B;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #2C2C2C;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    flex: 1;
    max-width: 400px;
}

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

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

.footer-brand p {
    color: #94A3B8;
    line-height: 1.6;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    min-width: 300px;
}

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

.footer-column a {
    display: block;
    color: #94A3B8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #0066FF;
}

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

.footer-bottom p {
    color: #94A3B8;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.875rem;
    font-style: italic;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #64748B;
}

.close:hover {
    color: #2C2C2C;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0066FF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        gap: 0.75rem;
    }
    
    .features h2,
    .how-it-works h2,
    .products h2,
    .compliance h2,
    .integrations h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .text-content h2 {
        font-size: 2rem;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-actions {
        gap: 0.75rem;
    }
    
    .btn-primary, 
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .hero-image {
        height: 200px;
    }
}