/* Proforma Invoice Page Styles */
.proforma-invoice-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

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

/* Hero Section - Single H1 */
.proforma-hero {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #4f46e5;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.proforma-hero h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0f172a;
    background: linear-gradient(135deg, #0f172a 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 12px;
}

.hero-sub-description {
    font-size: 16px;
    color: #4f46e5;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-features span {
    background: white;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 13px;
    color: #4f46e5;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: white;
    border: 2px solid #4f46e5;
    color: #4f46e5;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #4f46e5;
    color: white;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    color: #4f46e5;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 48px;
}

.section-header-centered h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.section-header-centered p {
    color: #64748b;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* What Is Section */
.what-is-section {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    margin-bottom: 80px;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.what-is-content {
    padding: 40px;
}

.what-is-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.what-is-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.also-known {
    background: #eef2ff;
    padding: 16px 20px;
    border-radius: 20px;
    margin-top: 20px;
}

.also-known strong {
    display: block;
    margin-bottom: 8px;
    color: #1e293b;
}

.also-known span {
    display: inline-block;
    background: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 8px;
    color: #4f46e5;
}

.what-is-image {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 100px;
}

/* Benefits Grid */
.why-use-section {
    margin-bottom: 80px;
}

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

.benefit-card {
    background: white;
    padding: 28px 20px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Comparison Table */
.comparison-section {
    margin-bottom: 80px;
}

.comparison-table-wrapper {
    background: white;
    border-radius: 24px;
    overflow-x: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: #f1f5f9;
    font-weight: 700;
    color: #0f172a;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 700;
    background: #f8fafc;
}

/* Steps Section */
.steps-section {
    margin-bottom: 80px;
    background: white;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.step-card {
    text-align: center;
    padding: 16px;
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* Template Section */
.template-section {
    margin-bottom: 80px;
}

.template-card {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    border-radius: 32px;
    padding: 48px;
    color: white;
    text-align: center;
}

.template-card h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.template-card p {
    opacity: 0.9;
    margin-bottom: 24px;
}

.template-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.template-features span {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 14px;
}

.template-note {
    background: rgba(255, 255, 255, 0.15);
    padding: 16px 20px;
    border-radius: 20px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-template {
    display: inline-block;
    background: white;
    color: #4f46e5;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-template:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 80px;
}

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

.faq-item {
    background: white;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.faq-item p {
    color: #64748b;
    line-height: 1.5;
}

/* Final CTA */
.final-cta-section {
    margin-top: 20px;
}

.final-cta-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 32px;
    padding: 50px 40px;
    text-align: center;
    color: white;
}

.final-cta-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.final-cta-card p {
    opacity: 0.9;
    margin-bottom: 24px;
}

.final-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.final-features span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 14px;
}

.cta-large {
    display: inline-block;
    background: #4f46e5;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-large:hover {
    background: #6366f1;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .what-is-section {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .proforma-hero h1 {
        font-size: 36px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .section-header-centered h2 {
        font-size: 28px;
    }

    .steps-section {
        padding: 30px 20px;
    }

    .template-card {
        padding: 32px 20px;
    }

    .final-cta-card h2 {
        font-size: 24px;
    }

    .container {
        padding: 0 16px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
        font-size: 12px;
    }
}