body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f5f7ff;
    color: #1f2937;
}

.hero-section {
    min-height: calc(100vh - 88px);
    padding: 4rem 0;
}

.hero-copy {
    max-width: 620px;
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.92);
}

.hero-panel {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1.25rem;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card,
.plan-card,
.testimonial-card,
.stats-card,
.glass-card,
.hero-panel {
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.08);
}

.feature-card {
    border: none;
}

.plan-card {
    border: none;
}

.plan-card.featured {
    border: none;
}

.feature-card .fa-2x,
.plan-card .fa-2x,
.testimonial-card .fa-2x {
    color: #0d6efd;
}

.testimonial-card {
    background: #f8f9fa;
}

.stats-card {
    min-height: 160px;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #fff;
    font-weight: 700;
}

.feature-sm h6 {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.feature-sm p {
    margin-bottom: 0;
    color: #6c757d;
}

.plan-card:hover {
    transform: translateY(-8px);
    transition: transform 0.25s ease;
}

.invoice-logo {
    max-width: 160px;
    object-fit: contain;
}

.invoice-print {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
}

.invoice-top {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f1f1;
}

.invoice-meta {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0.85rem;
}

.invoice-meta p,
.invoice-details p {
    margin-bottom: 0.45rem;
}

.invoice-summary {
    padding: 1.25rem;
    border-radius: 1rem;
    background: #f8f9fa;
}

.invoice-signature img {
    max-width: 200px;
}

.invoice-summary p {
    margin-bottom: 0.55rem;
}

.table thead th {
    border-bottom: 2px solid #dee2e6;
    color: #374151;
}

.table tbody td {
    vertical-align: middle;
}

.button-link,
.hero-panel .btn {
    min-width: 170px;
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .hero-panel {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-copy {
        font-size: 1rem;
    }
    .step-item {
        flex-direction: column;
    }
    .invoice-print .table thead {
        display: none;
    }
    .invoice-print .table tbody tr {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem 0;
        border-bottom: 1px solid #dee2e6;
    }
    .invoice-print .table tbody td {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0.5rem;
        padding: 0.25rem 0;
    }
    .invoice-print .table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #374151;
    }
    .invoice-print .table tbody td.text-end {
        justify-self: end;
    }
}

@media print {
    body {
        background: #fff;
    }
    nav,
    .footer,
    .btn,
    .invoice-items,
    .plan-card.featured,
    .card .btn,
    .table-responsive > .row,
    .navbar,
    .footer {
        display: none !important;
    }
    .invoice-print {
        box-shadow: none !important;
        border: none !important;
    }
    .invoice-print,
    .invoice-print * {
        color: #000 !important;
    }
    .table {
        width: 100% !important;
    }
}
