/* ═══════════════ NAVBAR ═══════════════ */
#mainNav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

#mainNav .nav-link {
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.2s;
}

#mainNav .nav-link:hover {
    color: #052767;
    background: rgba(5,39,103,0.06);
}

/* ═══════════════ HERO ═══════════════ */
.hero {
    background: linear-gradient(160deg, #f8faff 0%, #eef2ff 40%, #e8e8ff 100%);
    padding: 160px 0 80px;
    overflow: hidden;
}

.hero-mockup {
    position: relative;
}

.mockup-screen {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(5,39,103,0.12), 0 1px 3px rgba(0,0,0,0.06);
    overflow: hidden;
    max-width: 380px;
    margin: 0 auto;
}

.mockup-header {
    background: #eee;
    padding: 10px 16px;
    display: flex;
    gap: 6px;
}

.mockup-header .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #ccc;
}

.mockup-body {
    padding: 20px;
}

.receipt-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
}

.receipt-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.receipt-merchant {
    font-weight: 700;
    font-size: 1.1rem;
    color: #052767;
}

.receipt-date {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.receipt-total {
    font-size: 1.6rem;
    font-weight: 700;
    color: #198754;
    border-bottom: 2px dashed #dee2e6;
    padding-bottom: 12px;
    margin-bottom: 10px;
}

.receipt-items .item {
    display: flex; justify-content: space-between;
    padding: 4px 0;
    font-size: 0.9rem;
    color: #555;
}

.receipt-dph {
    display: flex; justify-content: space-between;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #dee2e6;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ═══════════════ FEATURES ═══════════════ */
.feature-card {
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #d0d7f0;
    box-shadow: 0 8px 30px rgba(5,39,103,0.06);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #052767, #3a0647);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* ═══════════════ STEPS ═══════════════ */
.step-circle {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #052767, #3a0647);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

/* ═══════════════ PRICING ═══════════════ */
.pricing-card {
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.pricing-card.popular {
    border-color: #052767;
    border-width: 2px;
    box-shadow: 0 12px 40px rgba(5,39,103,0.1);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #052767;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header h5 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #052767;
    line-height: 1.2;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 0.95rem;
}

.pricing-features li i {
    margin-right: 8px;
}

/* ═══════════════ CTA ═══════════════ */
.cta-section {
    background: linear-gradient(135deg, #052767, #3a0647);
    color: #fff;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 50px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .price {
        font-size: 2rem;
    }
}
