/* =============================================================
   phocacart-product.css  —  styles for phocacart-product.html only
   ============================================================= */

/* ── Hero ─────────────────────────────────────────────────────── */
.phoca-product-hero {
    background: linear-gradient(135deg, #12183a 0%, #1940b0 55%, #16a3fe 100%);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}
.phoca-product-hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    top: -200px; right: -150px;
    pointer-events: none;
}
.phoca-product-hero::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(25,64,176,.2);
    bottom: -150px; left: -100px;
    pointer-events: none;
}
.phoca-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.phoca-hero-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.9);
    font-size: .82rem;
    padding: 7px 16px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
}
.phoca-hero-stat-pill strong { color: #fff; }
.phoca-hero-visual-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(12px);
    color: #fff;
}
.phoca-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    width: 100%;
    min-height: 110px;
}
.phoca-payment-type-box {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    margin-top: 20px;
}
.phoca-payment-type-box .ptype-icon { font-size: 2rem; margin-bottom: 8px; }
.phoca-payment-type-box .ptype-label {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgba(255,255,255,.7);
}
.phoca-payment-type-box .ptype-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
}
.phoca-provider-mini-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.phoca-provider-mini-pill {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: .75rem;
    color: rgba(255,255,255,.85);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

/* ── Stats Bar ────────────────────────────────────────────────── */
.phoca-stats-bar {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    padding: 28px 0;
}
.phoca-stat-item { text-align: center; }
.phoca-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1940b0;
    line-height: 1;
}
.phoca-stat-label {
    font-size: .82rem;
    color: var(--blue-400);
    margin-top: 4px;
}

/* ── Section eyebrow ──────────────────────────────────────────── */
.phoca-section-eyebrow {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #1940b0;
    margin-bottom: 12px;
}

/* ── Payment Type (one-time featured) ────────────────────────── */
.phoca-onetime-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}
.phoca-onetime-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1940b0, #16a3fe);
}
.phoca-onetime-card:hover {
    border-color: #1940b0;
    box-shadow: 0 16px 48px rgba(25,64,176,.12);
}
.phoca-onetime-icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    background: rgba(25,64,176,.1);
    color: #1940b0;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}
.phoca-onetime-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue-600);
    margin-bottom: 12px;
}
.phoca-onetime-card .phoca-desc {
    color: var(--blue-400);
    font-size: .95rem;
    line-height: 1.65;
    margin-bottom: 28px;
}
.phoca-use-case-list {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
}
.phoca-use-case-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: .9rem;
    color: var(--blue-400);
}
.phoca-uc-icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(25,64,176,.12);
    color: #1940b0;
    display: flex; align-items: center; justify-content: center;
    font-size: .65rem;
}

/* ── Feature Cards ────────────────────────────────────────────── */
.phoca-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.phoca-feat-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow .25s, transform .25s;
}
.phoca-feat-card:hover {
    box-shadow: 0 12px 36px rgba(25,64,176,.1);
    transform: translateY(-4px);
}
.phoca-feat-card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.phoca-feat-card-icon.blue   { background: rgba(25,64,176,.1);   color: #1940b0; }
.phoca-feat-card-icon.light  { background: rgba(22,163,254,.1);  color: var(--blue-100); }
.phoca-feat-card-icon.green  { background: rgba(35,163,119,.1);  color: var(--green-300); }
.phoca-feat-card-icon.orange { background: rgba(237,137,54,.1);  color: #ed8936; }
.phoca-feat-card-icon.teal   { background: rgba(56,178,172,.1);  color: #38b2ac; }
.phoca-feat-card-icon.indigo { background: rgba(76,81,191,.1);   color: #4c51bf; }
.phoca-feat-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue-600);
    margin-bottom: 8px;
}
.phoca-feat-card p {
    font-size: .9rem;
    color: var(--blue-400);
    line-height: 1.6;
    margin: 0;
}

/* ── How It Works ─────────────────────────────────────────────── */
.phoca-how-step { text-align: center; padding: 16px; }
.phoca-how-step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #1940b0;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.phoca-how-step h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-600);
    margin-bottom: 8px;
}
.phoca-how-step p {
    font-size: .85rem;
    color: var(--blue-400);
    line-height: 1.6;
}

/* ── Providers Strip ──────────────────────────────────────────── */
.phoca-providers-strip {
    background: var(--blue-600);
    padding: 56px 0;
}
.phoca-provider-logo-pill {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    transition: background .2s, transform .2s;
}
.phoca-provider-logo-pill:hover {
    background: rgba(255,255,255,.13);
    transform: translateY(-2px);
}
.phoca-provider-logo-pill img {
    max-height: 32px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}
.phoca-provider-logo-pill--more {
    border: 1px dashed rgba(255,255,255,.35);
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    letter-spacing: .03em;
}

/* ── Why Cards ────────────────────────────────────────────────── */
.phoca-why-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 24px;
}
.phoca-why-card-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    background: rgba(25,64,176,.08);
    color: #1940b0;
}
.phoca-why-card h5 {
    font-size: .98rem;
    font-weight: 700;
    color: var(--blue-600);
    margin-bottom: 4px;
}
.phoca-why-card p {
    font-size: .85rem;
    color: var(--blue-400);
    margin: 0;
    line-height: 1.55;
}

/* ── FAQ ──────────────────────────────────────────────────────── */
.phoca-faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}
.phoca-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    color: var(--blue-600);
    font-size: .95rem;
    gap: 16px;
}
.phoca-faq-question:hover { background: var(--blue-30); }
.phoca-faq-question .phoca-faq-arrow {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(25,64,176,.1);
    display: flex; align-items: center; justify-content: center;
    color: #1940b0;
    transition: transform .25s;
    font-size: .85rem;
}
.phoca-faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: .9rem;
    color: var(--blue-400);
    line-height: 1.65;
    background: #fff;
}
.phoca-faq-item.open .phoca-faq-answer { display: block; }
.phoca-faq-item.open .phoca-faq-arrow  { transform: rotate(180deg); background: #1940b0; color: #fff; }

/* ── CTA Banner ───────────────────────────────────────────────── */
.phoca-cta-banner {
    background: linear-gradient(135deg, #12183a 0%, #1940b0 100%);
    border-radius: 24px;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}
.phoca-cta-banner::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(22,163,254,.1);
    top: -200px; right: -100px;
    pointer-events: none;
}
.phoca-cta-banner h2 { color: #fff; }
.phoca-cta-banner p  { color: rgba(255,255,255,.8); }
