/* Layout fixes for Forcefield website */

/* General padding and spacing improvements */
.container {
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 4rem 0;
}

/* Pricing section adjustments */
.pricing-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .price {
    margin: 1.5rem 0;
}

.pricing-card .features-list {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.pricing-card .btn {
    align-self: center;
    min-width: 150px;
}

/* Pro pricing adjustments */
.pricing-card.featured .price {
    position: relative;
}

.pricing-card.featured .price .original-price {
    position: relative;
    color: var(--gray-medium);
    font-size: 1.5rem;
}

.pricing-card.featured .price .original-price::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--accent-red);
    transform: rotate(-5deg);
}

.pricing-card.featured .price .free-label {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 2rem;
}

/* Enterprise pricing adjustments */
.pricing-card .contact-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-dark);
}

/* Scan section layout improvements */
.scan-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.scan-form-container {
    flex: 1;
    min-width: 300px;
}

.scan-results {
    flex: 1;
    min-width: 300px;
    background-color: var(--light);
    border-radius: 8px;
    padding: 1.5rem;
}

/* Form improvements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
}

.form-group.checkbox input {
    margin-top: 0.25rem;
    margin-right: 0.75rem;
}

.form-group.actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Footer improvements */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem 0;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    margin-right: 2rem;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-column {
    min-width: 150px;
    margin-bottom: 1.5rem;
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scan-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: row;
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
.pricing-card.featured .price .price-note {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-top: 0.25rem;
    font-weight: normal;
}

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

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-card.featured {
        transform: scale(1.05);
    }
}
