/* ══════════════════════════════════════════
   /mobile-shop-pos-software landing page
══════════════════════════════════════════ */

/* ─── HERO ─── */
.pos-hero {
    background: #030307;
    padding: 110px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pos-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 400px at 20% 60%, rgba(34,197,94,0.09) 0%, transparent 70%),
        radial-gradient(ellipse 600px 350px at 80% 30%, rgba(34,197,94,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.pos-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.pos-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 700;
    color: #4ADE80;
    letter-spacing: 0.6px;
    margin-bottom: 28px;
    text-transform: uppercase;
}
.pos-badge i { font-size: 13px; }
.pos-h1 {
    font-size: clamp(32px, 5.5vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -1px;
}
.pos-h1 span {
    background: linear-gradient(135deg, #22C55E 0%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pos-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin: 0 auto 36px;
    max-width: 620px;
}
.pos-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.pos-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 6px 24px rgba(34,197,94,0.3);
}
.pos-btn-primary:hover { opacity: .88; transform: translateY(-2px); color: #fff; text-decoration: none; }
.pos-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.pos-btn-ghost:hover { background: rgba(255,255,255,0.09); color: #fff; text-decoration: none; }
.pos-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
}
.pos-trust-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.2); }

/* ─── SELL PRODUCTS MARQUEE ─── */
.pos-products {
    background: #06060D;
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.pos-products-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
    margin-bottom: 24px;
}
.pos-marquee-track {
    display: flex;
    gap: 12px;
    animation: posMarquee 28s linear infinite;
    width: max-content;
}
.pos-marquee-track:hover { animation-play-state: paused; }
@keyframes posMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.pos-product-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
    transition: border-color .2s, color .2s;
}
.pos-product-pill i { font-size: 15px; }
.pos-product-pill.c1 { color: #4ADE80; border-color: rgba(34,197,94,0.2); }
.pos-product-pill.c2 { color: #60A5FA; border-color: rgba(96,165,250,0.2); }
.pos-product-pill.c3 { color: #34D399; border-color: rgba(52,211,153,0.2); }
.pos-product-pill.c4 { color: #FCD34D; border-color: rgba(252,211,77,0.2); }
.pos-product-pill.c5 { color: #F472B6; border-color: rgba(244,114,182,0.2); }
.pos-product-pill.c6 { color: #22D3EE; border-color: rgba(34,211,238,0.2); }

/* ─── SHARED SECTION ─── */
.pos-section {
    padding: 90px 24px;
}
.pos-section-inner {
    max-width: 1140px;
    margin: 0 auto;
}
.pos-section-head {
    text-align: center;
    margin-bottom: 56px;
}
.pos-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.pos-h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.18;
    letter-spacing: -0.5px;
}
.pos-h2 span { color: #4ADE80; }
.pos-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    max-width: 580px;
    margin: 0 auto;
}

/* ─── PROBLEMS ─── */
.pos-problems-bg { background: #030307; }
.pos-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 768px) { .pos-problems-grid { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 768px) { .pos-problems-grid { grid-template-columns: 1fr 1fr; } }
.pos-problem-card {
    background: rgba(239,68,68,0.04);
    border: 1px solid rgba(239,68,68,0.12);
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color .2s;
}
.pos-problem-card:hover { border-color: rgba(239,68,68,0.25); }
.pos-problem-x {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}
.pos-problem-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.pos-problem-sub { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.55; }

/* ─── WHAT IS POS ─── */
.pos-what-bg { background: #06060D; }
.pos-what-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 768px) { .pos-what-split { grid-template-columns: 1fr; gap: 40px; } }
.pos-what-text .pos-h2 { text-align: left; }
.pos-what-text .pos-desc { text-align: left; margin-left: 0; max-width: 100%; }
.pos-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.pos-include-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #4ADE80;
}
.pos-include-chip i { color: #22C55E; font-size: 13px; }
.pos-what-visual {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pos-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 14px 18px;
}
.pos-stat-label { font-size: 13px; color: rgba(255,255,255,0.45); }
.pos-stat-val { font-size: 18px; font-weight: 800; color: #fff; }
.pos-stat-val.green { color: #22C55E; }
.pos-stat-val.blue  { color: #60A5FA; }
.pos-stat-val.purple{ color: #4ADE80; }
.pos-stat-val.yellow{ color: #FCD34D; }

/* ─── FEATURES ALTERNATING ─── */
.pos-features-bg { background: #030307; }
.pos-feat-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 72px;
}
.pos-feat-block:last-child { margin-bottom: 0; }
.pos-feat-block.reverse { direction: rtl; }
.pos-feat-block.reverse > * { direction: ltr; }
@media (max-width: 768px) {
    .pos-feat-block, .pos-feat-block.reverse { grid-template-columns: 1fr; direction: ltr; }
}
.pos-feat-visual {
    border-radius: 18px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 260px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.pos-feat-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: var(--glow, rgba(34,197,94,0.06));
    border: 1px solid var(--border, rgba(34,197,94,0.15));
}
.pos-feat-icon-lg {
    font-size: 52px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.pos-feat-visual-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 1;
}
.pos-feat-visual-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.pos-feat-content {}
.pos-feat-content .pos-kicker { display: inline-flex; }
.pos-feat-content .pos-h2 { text-align: left; }
.pos-feat-content .pos-desc { text-align: left; margin-left: 0; max-width: 100%; }
.pos-feat-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pos-feat-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}
.pos-feat-list-item i {
    color: #22C55E;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ─── WHO SHOULD USE ─── */
.pos-who-bg { background: #06060D; }
.pos-who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 900px) { .pos-who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .pos-who-grid { grid-template-columns: 1fr; } }
.pos-who-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: border-color .25s, transform .25s;
}
.pos-who-card:hover { border-color: rgba(34,197,94,0.3); transform: translateY(-4px); }
.pos-who-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}
.pos-who-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.pos-who-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.55; }

/* ─── COMPARISON ─── */
.pos-compare-bg { background: #030307; }
.pos-compare-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}
.pos-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px;
}
.pos-compare-table thead th {
    padding: 18px 24px;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.pos-compare-table thead th.col-srd {
    color: #4ADE80;
    background: rgba(34,197,94,0.06);
}
.pos-compare-table tbody td {
    padding: 15px 24px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pos-compare-table tbody tr:last-child td { border-bottom: none; }
.pos-compare-table tbody td:first-child { color: rgba(255,255,255,0.8); font-weight: 500; }
.pos-compare-table tbody td.col-manual { text-align: center; color: rgba(239,68,68,0.7); font-size: 16px; }
.pos-compare-table tbody td.col-srd {
    text-align: center;
    font-size: 16px;
    background: rgba(34,197,94,0.04);
    color: #22C55E;
}
.pos-compare-table tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* ─── FAQ ─── */
.pos-faq-bg { background: #06060D; }
.pos-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pos-faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s;
}
.pos-faq-item.open { border-color: rgba(34,197,94,0.3); }
.pos-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color .2s;
}
.pos-faq-q:hover { color: #fff; }
.pos-faq-item.open .pos-faq-q { color: #4ADE80; }
.pos-faq-q i { flex-shrink: 0; transition: transform .25s; font-size: 14px; }
.pos-faq-item.open .pos-faq-q i { transform: rotate(45deg); }
.pos-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    padding: 0 24px;
}
.pos-faq-item.open .pos-faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* ─── FINAL CTA ─── */
.pos-cta {
    background: #030307;
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pos-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 500px at 50% 100%, rgba(34,197,94,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.pos-cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.pos-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 700;
    color: #4ADE80;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.pos-cta-h {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.pos-cta-p {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin: 0 0 36px;
}
.pos-cta-note {
    margin-top: 18px;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
}
.pos-cta-note span { margin: 0 8px; }
