/* Excel Template Page Styles */
:root {
    --excel-primary: #019b5f;
    --excel-primary-dark: #017a4c;
    --excel-primary-light: #e6f7f1;
    --excel-text-dark: #1a1a1a;
    --excel-text-muted: #666;
    --excel-bg-light: #f8f9fa;
    --excel-border: #e5e7eb;
}

/* Reset for this page */
.excel-hero,
.excel-features,
.excel-cta-section {
    padding: 0;
    margin: 0;
}

/* Container */
.excel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.excel-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
}

.excel-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.excel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--excel-primary-light);
    color: var(--excel-primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.excel-badge .material-symbols-outlined {
    font-size: 20px;
    color: var(--excel-primary);
}

.excel-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--excel-text-dark);
    margin: 0 0 20px;
    line-height: 1.2;
}

.excel-subtitle {
    font-size: 20px;
    color: var(--excel-text-muted);
    margin: 0 0 40px;
    line-height: 1.6;
}

/* CTA Button */
.excel-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--excel-primary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(1, 155, 95, 0.3);
}

.excel-cta:hover {
    background: var(--excel-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 155, 95, 0.4);
}

.excel-cta .material-symbols-outlined {
    font-size: 20px;
}

/* Status Messages */
#status,
.excel-status {
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
}

#status.gen,
.excel-status.gen,
.status.gen {
    background: #fef9c3;
    color: #854d0e;
    border: 1px solid #fde68a;
}

#status.ok,
.excel-status.ok,
.status.ok {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

#status.err,
.excel-status.err,
.status.err {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Trust Badge */
.excel-trust {
    margin-top: 24px;
    font-size: 14px;
    color: var(--excel-text-muted);
}

.excel-trust span {
    display: inline-block;
}

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

.excel-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--excel-text-dark);
    text-align: center;
    margin: 0 0 60px;
}

.excel-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.excel-feature-card {
    background: white;
    border: 1px solid var(--excel-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.excel-feature-card:hover {
    border-color: var(--excel-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.excel-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.excel-feature-icon .material-symbols-outlined {
    font-size: 32px;
}

.excel-feature-icon-sheets {
    background: #e0f2fe;
}

.excel-feature-icon-sheets .material-symbols-outlined {
    color: #0284c7;
}

.excel-feature-icon-validation {
    background: #dcfce7;
}

.excel-feature-icon-validation .material-symbols-outlined {
    color: #16a34a;
}

.excel-feature-icon-formulas {
    background: #fef3c7;
}

.excel-feature-icon-formulas .material-symbols-outlined {
    color: #ca8a04;
}

.excel-feature-icon-format {
    background: #fce7f3;
}

.excel-feature-icon-format .material-symbols-outlined {
    color: #db2777;
}

.excel-feature-icon-data {
    background: #ede9fe;
}

.excel-feature-icon-data .material-symbols-outlined {
    color: #7c3aed;
}

.excel-feature-icon-guide {
    background: #ffedd5;
}

.excel-feature-icon-guide .material-symbols-outlined {
    color: #ea580c;
}

.excel-feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--excel-text-dark);
    margin: 0 0 12px;
}

.excel-feature-card p {
    font-size: 15px;
    color: var(--excel-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.excel-cta-section {
    padding: 80px 0;
    background: var(--excel-bg-light);
}

.excel-cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.excel-cta-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--excel-text-dark);
    margin: 0 0 16px;
}

.excel-cta-card p {
    font-size: 18px;
    color: var(--excel-text-muted);
    line-height: 1.6;
    margin: 0 0 32px;
}

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

.excel-btn-primary,
.excel-btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.excel-btn-primary {
    background: var(--excel-primary);
    color: white;
    box-shadow: 0 2px 10px rgba(1, 155, 95, 0.3);
}

.excel-btn-primary:hover {
    background: var(--excel-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(1, 155, 95, 0.4);
}

.excel-btn-secondary {
    background: white;
    color: var(--excel-text-dark);
    border: 2px solid var(--excel-border);
}

.excel-btn-secondary:hover {
    border-color: var(--excel-primary);
    color: var(--excel-primary);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .excel-hero {
        padding: 60px 0;
    }

    .excel-title {
        font-size: 36px;
    }

    .excel-subtitle {
        font-size: 18px;
    }

    .excel-cta {
        padding: 16px 28px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }

    .excel-features {
        padding: 60px 0;
    }

    .excel-section-title {
        font-size: 28px;
        margin: 0 0 40px;
    }

    .excel-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .excel-cta-section {
        padding: 60px 0;
    }

    .excel-cta-card {
        padding: 40px 24px;
    }

    .excel-cta-card h2 {
        font-size: 26px;
    }

    .excel-cta-card p {
        font-size: 16px;
    }

    .excel-cta-buttons {
        flex-direction: column;
    }

    .excel-btn-primary,
    .excel-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .excel-trust span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .excel-title {
        font-size: 28px;
    }

    .excel-subtitle {
        font-size: 16px;
    }

    .excel-badge {
        font-size: 13px;
        padding: 6px 12px;
    }
}
