/* ══════════════════════════════════════════════════════════
   Invoicing Feature Page
   ══════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────── */
.about-header {
    background: linear-gradient(145deg, #0f1426 0%, #182540 60%, #1e3050 100%) !important;
    padding: 70px 0 100px 0 !important;
}

.about-header h1 {
    font-weight: 300 !important;
    font-size: 44px !important;
    letter-spacing: -0.5px;
    margin-bottom: 18px !important;
}

.about-header p {
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px !important;
    line-height: 1.7 !important;
}

.hero-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-badges .badge-item {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-badges .badge-item i {
    color: var(--color-success);
    margin-right: 6px;
    font-size: 12px;
}

/* ── Hero app preview ──────────────────────────────────── */
.hero-app-preview {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.hero-app-preview img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── How it works ──────────────────────────────────────── */
.how-it-works {
    padding: 80px 0 70px !important;
}

.how-it-works .step-number {
    background: #67b7dc !important;
    color: #fff !important;
    width: 52px !important;
    height: 52px !important;
    font-size: 22px !important;
    box-shadow: 0 4px 15px rgba(103, 183, 220, 0.25);
}

.how-it-works .step {
    position: relative;
}

@media (min-width: 992px) {
    .how-it-works .col-md-4:not(:last-child) .step::after {
        content: '';
        position: absolute;
        top: 24px;
        right: -18%;
        width: 36%;
        height: 2px;
        background: linear-gradient(90deg, #67b7dc 0%, #e0e4ed 100%);
    }
}

.how-it-works .step h3 {
    color: #444 !important;
}

.how-it-works .step p {
    color: #666 !important;
}

/* ── Showcase sections ─────────────────────────────────── */
@media (min-width: 992px) {
    .feature-showcase .row {
        display: flex;
        align-items: center;
    }
}

.feature-showcase .showcase-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(15, 20, 38, 0.12);
}

.feature-showcase .showcase-text ul li i {
    color: var(--color-success) !important;
}

.feature-showcase .showcase-text h2 {
    color: #444 !important;
    font-size: 28px !important;
}

.feature-showcase .showcase-text p,
.feature-showcase .showcase-text ul li {
    color: #666 !important;
}

/* ── Feature cards ─────────────────────────────────────── */
.features-section {
    padding: 70px 0 !important;
    background: #F5F7FB !important;
}

.features-section .portlet.light {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features-section .card-icon {
    margin-bottom: 8px;
}

.features-section .card-icon i {
    margin: 15px 0 !important;
}

.features-section .portlet.light:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
}

.features-section .row .col-md-4:nth-child(1) .card-icon i { background: #E6F4FA !important; color: #67b7dc !important; }
.features-section .row .col-md-4:nth-child(2) .card-icon i { background: #E8F5E9 !important; color: var(--color-success) !important; }
.features-section .row .col-md-4:nth-child(3) .card-icon i { background: #F3E8FD !important; color: #9b6fc6 !important; }
.features-section .row .col-md-4:nth-child(4) .card-icon i { background: #FFF8E1 !important; color: #e8b365 !important; }
.features-section .row .col-md-4:nth-child(5) .card-icon i { background: #FDECEB !important; color: var(--color-danger) !important; }
.features-section .row .col-md-4:nth-child(6) .card-icon i { background: #E0F7FA !important; color: #4db6ac !important; }

.features-section .portlet.light h3 { color: #444 !important; }
.features-section .portlet.light p { color: #666 !important; }

/* ── Comparison strip ──────────────────────────────────── */
.comparison-strip {
    background: #fff;
    padding: 50px 0;
    text-align: center;
}

.comparison-strip h2 {
    font-size: 26px;
    font-weight: 400;
    color: #444;
    margin-bottom: 30px;
}

.comparison-table {
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
}

.comparison-table .comp-row {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #eef1f5;
}

.comparison-table .comp-row:last-child {
    border-bottom: none;
}

.comparison-table .comp-feature {
    flex: 1;
    text-align: left;
    color: #444;
    font-weight: 500;
}

.comparison-table .comp-them,
.comparison-table .comp-us {
    width: 120px;
    text-align: center;
}

.comparison-table .comp-header {
    font-weight: 600;
    color: #444;
    padding-bottom: 14px;
    border-bottom: 2px solid #e0e4ed;
    margin-bottom: 4px;
}

.comparison-table .comp-header .comp-us {
    color: #67b7dc;
}

.comparison-table .comp-them {
    color: #999;
}

.comparison-table .comp-us {
    color: var(--color-success);
    font-weight: 600;
}

.comparison-table .comp-us .fa-check { color: var(--color-success); }
.comparison-table .comp-us .fa-times { color: var(--color-danger); }
.comparison-table .comp-them .fa-check { color: #999; }
.comparison-table .comp-them .fa-times { color: var(--color-danger); }

/* ── Trust strip ───────────────────────────────────────── */
.trust-strip {
    background: #F5F7FB;
    padding: 35px 0;
    text-align: center;
    border-top: 1px solid #eef1f5;
    border-bottom: 1px solid #eef1f5;
}

.trust-strip .trust-item {
    display: inline-block;
    padding: 0 28px;
    color: #444;
    font-size: 14px;
    font-weight: 500;
}

.trust-strip .trust-item i {
    color: var(--color-success);
    margin-right: 7px;
}

/* ── Mid-page CTA ──────────────────────────────────────── */
.mid-page-cta {
    background: linear-gradient(135deg, #0f1426 0%, #1a2744 100%) !important;
    padding: 60px 0 !important;
}

.mid-page-cta h2 {
    font-weight: 300 !important;
    font-size: 30px !important;
}

/* ── FAQ section ───────────────────────────────────────── */
.feature-faq {
    background: #fff;
    padding: 70px 0;
}

.feature-faq h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    color: #444;
    margin-bottom: 40px;
}

.feature-faq .faq-item {
    max-width: 720px;
    margin: 0 auto 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #eef1f5;
}

.feature-faq .faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-faq .faq-item h3 {
    font-size: 17px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.feature-faq .faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ── Cross-links ───────────────────────────────────────── */
.cross-links {
    background: #F5F7FB;
    padding: 50px 0;
    text-align: center;
}

.cross-links h2 {
    font-size: 22px;
    font-weight: 400;
    color: #444;
    margin-bottom: 25px;
}

.cross-links .link-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cross-links .link-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px 30px;
    text-align: center;
    width: 200px;
    text-decoration: none !important;
    color: #444;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cross-links .link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.cross-links .link-card i {
    font-size: 28px;
    color: #67b7dc;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

.cross-links .link-card span {
    font-weight: 500;
    font-size: 14px;
}
