/* Global Styles */
:root {
    --primary-color: #2962FF;
    --secondary-color: #00BFA5;
    --dark-color: #263238;
    --light-color: #ECEFF1;
    --danger-color: #FF5252;
    --success-color: #4CAF50;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

/* Feature Cards */
.features-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

footer h5 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer a {
    color: var(--light-color);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #0039CB;
    border-color: #0039CB;
}

/* How It Works Page Styles */
.work-step {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.work-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 20px 0;
}

.tech-feature {
    margin-bottom: 30px;
}

.tech-feature i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.tech-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Pricing Page Styles */
.pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.pricing-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.features li:last-child {
    border-bottom: none;
}

.features i {
    color: var(--success-color);
    margin-right: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.connection-features {
    margin-top: 30px;
}

.connection-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.connection-features i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.connection-features h4 {
    margin-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }

    .work-step {
        margin-bottom: 30px;
    }

    .pricing-card {
        margin-bottom: 30px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .lead-discovery,
    .ad-connection {
        text-align: center;
    }

    .connection-features {
        justify-content: center;
    }
}