/* QuickFix Website Styles */

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

:root {
    /* Brand Colors - Match extension icon */
    --primary-color: #000000;
    --primary-dark: #000000;
    --secondary-color: #000000;
    --accent-color: #000000;
    
    /* Neutral Colors */
    --text-dark: #000000;
    --text-light: #000000;
    --text-muted: #666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #2e2e2e;
    
    /* Status Colors */
    --success-color: #10b981;
    --error-color: #ef4444;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
}

.logo {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.header-text h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.header-text p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 400;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

/* Sections */
.section {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    margin: var(--spacing-lg) 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.section h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: var(--spacing-sm);
}

.section h3 {
    color: var(--text-dark);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 1.4rem;
    font-weight: 600;
}

.section p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.feature {
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature p {
    color: var(--text-light);
    margin: 0;
}

/* Pricing Card */
.pricing-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin: var(--spacing-lg) 0;
}

.pricing-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    margin-top: 0;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    margin: var(--spacing-md) 0;
}

.price small {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.pricing-card ul {
    list-style: none;
    margin: var(--spacing-md) 0;
    padding: 0;
}

.pricing-card li {
    padding: var(--spacing-xs) 0;
    font-size: 1.1rem;
    color: white
}

.pricing-card li::before {
    content: "✓";
    margin-right: var(--spacing-xs);
    font-weight: bold;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: var(--spacing-md);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #f8f9fa;
}

/* Free Badge */
.free-badge {
    display: inline-block;
    background: var(--success-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-weight: 600;
    margin-left: var(--spacing-sm);
}

/* Contact Info Card */
.contact-card {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
    border: 2px solid var(--primary-color);
}

.contact-card p {
    margin: var(--spacing-sm) 0;
    color: var(--text-dark);
}

.contact-card strong {
    color: var(--primary-color);
}

/* Lists */
ul {
    margin-left: var(--spacing-lg);
    margin-top: var(--spacing-sm);
}

li {
    margin: var(--spacing-sm) 0;
    color: var(--text-light);
}

/* Footer */
footer {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-muted);
    background: white;
    margin-top: var(--spacing-xl);
    border-top: 2px solid var(--border-color);
}

footer p {
    margin: var(--spacing-xs) 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .header-text h1 {
        font-size: 2rem;
    }
    
    .header-text p {
        font-size: 1rem;
    }
    
    .section {
        padding: var(--spacing-md);
    }
    
    .section h2 {
        font-size: 1.6rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: var(--spacing-sm);
    }
    
    .section {
        padding: var(--spacing-sm);
    }
    
    .header-text h1 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        width: 100%;
        padding: var(--spacing-md);
    }
}
