:root {
    --primary-red: #EB0014;
    --primary-blue: #0071E6;
    --secondary-blue: #1E88E5;
    --light-blue: #E3F2FD;
    --dark-gray: #404040;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --success-green: #28A745;
    --warning-orange: #FFC107;
    --danger-red: #DC3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red) !important;
}

.navbar-brand i {
    color: var(--primary-blue);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 2rem;
}

.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c5001a;
    border-color: #c5001a;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: white;
    border-color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

.view-more-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-more-link:hover {
    color: #c5001a;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.blog-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.lead-category-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.category-subtitle {
    color: #666;
    margin-bottom: 0.5rem;
}

.update-date {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.leads-table {
    margin-bottom: 1rem;
}

.table-header {
    display: grid;
    grid-template-columns: 30px 1fr 80px;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 2px solid var(--light-gray);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark-gray);
}

.lead-row {
    display: grid;
    grid-template-columns: 30px 1fr 80px;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.rank {
    font-weight: 600;
    color: var(--dark-gray);
}

.company-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.company-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.score {
    font-weight: 600;
    color: var(--dark-gray);
    text-align: right;
}

.btn-outline-danger {
    color: var(--primary-red);
    border-color: var(--primary-red);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.hot-leads-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: #666;
    margin-bottom: 0.5rem;
}

.update-info {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.prospects-table {
    margin-bottom: 1rem;
}

.prospect-row {
    display: grid;
    grid-template-columns: 1fr 60px 60px;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.company-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.company-name {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.company-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag.overall {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.tag.category {
    background-color: #fff3cd;
    color: #856404;
}

.ranking {
    font-weight: 600;
    color: var(--dark-gray);
    text-align: center;
}

.change {
    font-weight: 600;
    text-align: center;
}

.change.positive {
    color: var(--success-green);
}

.change.negative {
    color: var(--danger-red);
}

.change.neutral {
    color: #999;
}

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

.cta-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-danger {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #c5001a;
    border-color: #c5001a;
    transform: translateY(-2px);
}

.popular-charts {
    background-color: var(--light-gray);
}

.chart-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer {
    background-color: #2c2c2c !important;
}

.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.separator {
    color: #666;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .table-header,
    .lead-row,
    .prospect-row {
        font-size: 0.875rem;
    }
    
    .footer-links {
        justify-content: center;
        text-align: center;
    }
    
    .chart-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .chart-buttons .btn {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .company-info {
        gap: 0.5rem;
    }
    
    .company-avatar,
    .company-logo {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .company-logo {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 113, 230, 0.25);
}

.btn-success {
    background-color: var(--success-green);
    border-color: var(--success-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-2px);
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-red);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.price-unit {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

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

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list li i {
    color: var(--success-green);
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    margin-bottom: 1rem;
}

.ceo-section img {
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.alert {
    border-radius: 8px;
    border: none;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.terms-content h2,
.privacy-content h2 {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-content h3,
.privacy-content h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.terms-content p,
.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.terms-content ul,
.privacy-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.terms-content li,
.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
