/* ──────────────────────────────────────
   POS Landing — pos-landing.css
   ────────────────────────────────────── */

/* Hero */
.pos-hero {
    text-align: center;
    padding: 4rem 0 2rem;
}

.pos-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.pos-hero .pos-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.pos-hero-badge {
    display: inline-block;
    background: var(--brand-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

/* Features Grid */
.pos-features {
    padding: 2rem 0 3rem;
}

.pos-features h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.pos-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.pos-feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s;
}

.pos-feature-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pos-feature-card .feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.pos-feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pos-feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Pricing Section */
.pos-pricing {
    padding: 3rem 0;
}

.pos-pricing h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.pos-pricing .section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.pos-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pos-plan-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pos-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pos-plan-card.recommended {
    border: 2px solid var(--brand-primary);
}

.pos-plan-pill {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 12px;
    white-space: nowrap;
}

.pos-plan-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.pos-plan-price {
    margin: 1rem 0;
}

.pos-plan-price .amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.pos-plan-price .currency {
    font-size: 1rem;
    color: var(--text-muted);
}

.pos-plan-price .duration {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.pos-plan-card .discount-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.pos-plan-card .base-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.pos-plan-card .btn-cta {
    width: 100%;
    margin-top: 1rem;
}

.pos-plan-card .btn-outline {
    width: 100%;
    margin-top: 1rem;
}

/* Notices */
.pos-vat-notice {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 1.5rem;
}

.pos-referral-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.75rem;
    font-style: italic;
}

.pos-device-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ERP notice */
.pos-erp-notice {
    text-align: center;
    padding: 2rem 0 3rem;
}

.pos-erp-notice .notice-box {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 12px;
    padding: 1.25rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #5d4037;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .pos-hero h1 {
        font-size: 1.6rem;
    }

    .pos-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pos-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .pos-features-grid {
        grid-template-columns: 1fr;
    }
}