:root {
    --primary-color: #536de6;
    --secondary-color: #3b4cb8;
    --accent-color: #6b7ef6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1f2937;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

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

.narrow-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.subcontractor-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.subcontractor-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-europe {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge-usa {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-essential {
    background-color: #dcfce7;
    color: #166534;
}

.badge-analytics {
    background-color: #e0e7ff;
    color: #3730a3;
}

.badge-hosting {
    background-color: #f3e8ff;
    color: #6b21a8;
}

.badge-ai {
    background-color: #ffedd5;
    color: #ea580c;
}

@media screen and (max-width: 768px) {
    #top-book-demo-button {
        display: none;
    }

    nav img {
        height: 32px;
        width: auto;
    }

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