/* 
 * Alberta Renovation Estimator - Essential Styles
 * Modular CSS extracted from monolithic landing_page.html
 */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    color: #1f2937;
    margin-bottom: 12px;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 24px;
}

.subtext {
    font-size: 14px;
    color: #9ca3af;
}

/* CONTRACTOR LANDING PAGE STYLES */

/* Navigation */
.navbar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2563eb;
}

.btn-primary {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1d4ed8;
    color: white;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #6b7280;
    padding: 12px 24px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #f9fafb;
    color: #1f2937;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #1f2937;
    margin-bottom: 24px;
}

.highlight {
    color: #2563eb;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Phone Mockup */
.phone-mockup {
    max-width: 300px;
    margin: 0 auto;
}

.phone-screen {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 8px solid #1f2937;
}

.estimate-preview h3 {
    color: #1f2937;
    margin-bottom: 16px;
}

.estimate-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.detail-row.total {
    font-weight: 700;
    color: #2563eb;
    border-bottom: 2px solid #2563eb;
    font-size: 18px;
}

.customer-info {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
}

.customer-info p {
    margin-bottom: 4px;
    font-size: 14px;
}

/* AI Credibility Section */
.ai-credibility {
    padding: 80px 0;
    background: white;
}

.credibility-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    align-items: center;
}

.credibility-stat {
    text-align: center;
}

.big-number {
    font-size: 72px;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.stat-description {
    font-size: 18px;
    color: #6b7280;
    margin-top: 8px;
}

.credibility-details h2 {
    margin-bottom: 32px;
}

.credibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.credibility-item h4 {
    color: #2563eb;
    margin-bottom: 8px;
}

.credibility-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #f8fafc;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 64px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 48px;
    height: 48px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 24px;
}

.step h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

.step p {
    color: #6b7280;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 64px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature {
    text-align: center;
    padding: 32px 24px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.feature h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

.feature p {
    color: #6b7280;
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: #f8fafc;
}

.social-proof h2 {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    color: #1f2937;
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 14px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.pricing-badge {
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card h3 {
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.pricing-period {
    color: #6b7280;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    color: #6b7280;
}

.pricing-features li:before {
    content: "✓";
    color: #22c55e;
    font-weight: bold;
    margin-right: 8px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand .brand-text {
    color: white;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .credibility-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 48px 0;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 24px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .credibility-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* CUSTOMER FORM STYLES (EXISTING) */

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid #f3f4f6;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-badge {
    background: #1f2937;
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.auth-btn {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.auth-btn.signin {
    color: #374151;
    border: 1px solid #d1d5db;
}

.auth-btn.signup {
    background: #22c55e;
    color: white;
    border: 1px solid #22c55e;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #22c55e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.dashboard-btn {
    background: #f3f4f6;
    color: #374151;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
}

/* Hero Section (Customer) */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.stat-card {
    text-align: center;
}

/* Form Styles */
.hero-estimator {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn {
    background: #22c55e;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn:hover {
    background: #16a34a;
    color: white;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #f3f4f6;
    color: #1f2937;
}

.btn-secondary:hover {
    background: #e5e7eb;
    color: #1f2937;
}

/* Photo Upload */
.photo-upload {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.2s;
}

.photo-upload:hover {
    border-color: #22c55e;
    background: #f0fdf4;
}

.upload-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.photo-preview {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
}

.photo-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.photo-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 12px;
    cursor: pointer;
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: #ffffff;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.demo-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.demo-card:hover {
    border-color: #22c55e;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

.demo-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.demo-card .price {
    font-size: 24px;
    font-weight: 800;
    color: #22c55e;
    margin: 12px 0;
}

.demo-card .location {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

/* Utility Classes */
.text-center { text-align: center; }
.hidden { display: none !important; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hero-estimator {
        padding: 20px;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* =====================================
   ESTIMATE FORM COMPONENT STYLES
   ===================================== */

/* Usage display styles */
.usage-display {
    background: #f0f9ff;
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.usage-display.limit-reached {
    background: #fef2f2;
    border-color: #f87171;
}

.usage-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.usage-icon {
    font-size: 20px;
}

.usage-text {
    font-weight: 600;
    color: #0369a1;
}

.limit-reached .usage-text {
    color: #dc2626;
}

.usage-action {
    margin-top: 8px;
}

.upgrade-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    background: white;
    border: 2px solid #2563eb;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.upgrade-link:hover {
    background: #2563eb;
    color: white;
}

/* Upgrade message styles */
.upgrade-message {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border: 2px solid #0ea5e9;
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    text-align: center;
}

.upgrade-message h4 {
    color: #0369a1;
    font-size: 20px;
    margin-bottom: 16px;
}

.upgrade-message p {
    color: #374151;
    margin-bottom: 16px;
}

.upgrade-message ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    text-align: left;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.upgrade-message li {
    color: #059669;
    font-weight: 500;
    margin-bottom: 8px;
    padding-left: 4px;
}

/* Photo upload styles for estimate form */
.form-group .photo-upload {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.2s ease;
}

.photo-upload:hover {
    border-color: #22c55e;
    background: #f0fdf4;
}

.photo-upload.drag-over {
    border-color: #22c55e;
    background: #f0fdf4;
    transform: scale(1.02);
}

.upload-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.photo-upload p {
    margin: 8px 0;
    color: #374151;
    font-weight: 500;
}

.photo-upload .subtext {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
}

.photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.photo-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    border: 2px solid white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.photo-remove:hover {
    background: #dc2626;
    color: white;
}

/* Estimate submit button styles */
.estimate-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.estimate-submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.estimate-submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Info tooltip styles */
.info-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 8px;
}

.info-icon {
    cursor: help;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #6b7280;
    color: white;
    font-size: 11px;
    font-weight: bold;
    font-style: normal;
    opacity: 0.8;
    transition: all 0.2s;
}

.info-icon:hover {
    opacity: 1;
    background-color: #374151;
    color: white;
    transform: scale(1.1);
}

.tooltip-text {
    visibility: hidden;
    width: 280px;
    background-color: #1f2937;
    color: white;
    text-align: left;
    border-radius: 8px;
    padding: 12px 16px;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    margin-left: -140px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #1f2937 transparent transparent transparent;
}

.info-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Error message styles */
.error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 4px;
    padding: 4px 0;
}

/* Form validation styles */
.form-input:invalid,
.form-textarea:invalid,
.form-select:invalid {
    border-color: #ef4444;
}

.form-input:valid,
.form-textarea:valid,
.form-select:valid {
    border-color: #22c55e;
}

/* Responsive adjustments for estimate form */
@media screen and (max-width: 768px) {
    .usage-display {
        flex-direction: column;
        text-align: center;
    }
    
    .photo-upload {
        padding: 24px 16px;
    }
    
    .upload-icon {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .photo-preview {
        justify-content: center;
    }
    
    .upgrade-message {
        padding: 20px 16px;
    }
    
    .upgrade-message ul {
        max-width: none;
    }
    
    /* Mobile tooltip adjustments */
    .tooltip-text {
        width: 250px;
        margin-left: -125px;
        font-size: 12px;
    }
}

/* ===================================== */

/* Additional pricing styles */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.pricing-card .price span {
    font-size: 18px;
    color: #6b7280;
}

.popular-badge {
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-card ul li {
    padding: 8px 0;
    color: #6b7280;
}

.pricing-card ul li:before {
    content: "✓";
    color: #22c55e;
    font-weight: bold;
    margin-right: 8px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #2563eb;
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.cta .btn-primary {
    background: white;
    color: #2563eb;
}

.cta .btn-primary:hover {
    background: #f8fafc;
    color: #1f2937;
}

.cta .btn-secondary {
    border-color: white;
    color: white;
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Footer fixes */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: white;
}

.footer-brand .brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .brand-logo span {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 24px;
} 