body.pos-solutions {
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    font-family: 'Inter', sans-serif;
}

.pos-landing {
    padding-top: 50px;
}

.pos-section {
    padding: 80px 0;
    background: #f9fafb;
}

.pos-section:nth-of-type(even) {
    background: #ffffff;
}

.pos-hero {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: #e5e7eb;
    padding-top: 120px;
    padding-bottom: 100px;
}

.pos-grid {
    display: grid;
    gap: 32px;
}

.pos-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
}

.pos-heading-xl {
    font-size: 40px;
    line-height: 1.1;
    margin: 12px 0 20px;
}

.pos-heading-lg {
    font-size: 32px;
    line-height: 1.2;
    margin: 10px 0 18px;
    color: #0f172a;
}

.pos-hero .pos-heading-xl {
    color: #f8fafc;
}

.pos-lead {
    font-size: 18px;
    line-height: 1.6;
    color: #111827;
    margin-bottom: 18px;
}

.pos-hero .pos-lead {
    color: #e2e8f0;
}

.pos-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    color: #0f172a;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.03em;
}

.pos-hero .pos-eyebrow {
    color: #bfdbfe;
    background: rgba(255, 255, 255, 0.08);
}

.pos-bullet-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 26px;
    display: grid;
    gap: 10px;
}

.pos-bullet-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: flex-start;
    color: #111827;
}

.pos-bullet-list li::before {
    content: '•';
    color: var(--first-color, #3b82f6);
    font-weight: 700;
}

.pos-hero .pos-bullet-list li {
    color: #e5e7eb;
}

.pos-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pos-btn-primary {
    background: var(--first-color, #3b82f6);
    border-color: var(--first-color, #3b82f6);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(59, 130, 246, 0.22);
}

.pos-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(59, 130, 246, 0.28);
}

.pos-btn-secondary {
    background: transparent;
    color: #0f172a;
    border-color: var(--first-color, #3b82f6);
}

.pos-hero .pos-btn-secondary {
    color: #e5e7eb;
}

.pos-btn-secondary:hover {
    background: rgba(59, 130, 246, 0.08);
    transform: translateY(-2px);
}

.pos-cta-pair {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 14px;
}

.pos-cta-single {
    margin-top: 18px;
}

.pos-cta-item, .pos-cta-single {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.pos-cta-note {
    font-size: 14px;
    color: #475569;
    margin: 0;
}

.pos-hero .pos-cta-note {
    color: #cbd5e1;
}

.pos-hero-visuals, .pos-visual-stack, .pos-visual-row {
    display: grid;
    gap: 16px;
}

.pos-visual-row {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 24px;
}

.pos-visual-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pos-hero .pos-visual-card {
    background: none;
    border: none;
    box-shadow: none;
}

.pos-visual-card.center-image img {
    max-width: 350px;
}

.pos-visual-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.pos-section-header {
    max-width: 840px;
    margin-bottom: 28px;
}

.pos-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin: 18px 0 28px;
}

.pos-logo-card {
    background: #ffffff;
    border: 1px dashed #d1d5db;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    min-height: 70px;
}

.pos-logo-card img {
    max-height: 80px;
    max-width: 160px;
    width: auto;
    opacity: 0.75;
}

.pos-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.pos-testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.pos-testimonial-text {
    color: #0f172a;
    font-size: 16px;
    margin-bottom: 12px;
}

.pos-testimonial-cite {
    color: #475569;
    font-size: 14px;
    margin: 0;
}

.pos-copy-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pos-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.pos-feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.pos-feature-media img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.pos-badge {
    display: inline-flex;
    padding: 6px 10px;
    background: rgba(59, 130, 246, 0.12);
    color: #0f172a;
    font-weight: 600;
    border-radius: 999px;
    font-size: 13px;
}

.pos-step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin: 14px 0 10px;
}

.pos-step-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
}

.pos-step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--first-color, #3b82f6);
    color: #ffffff;
    font-weight: 700;
}

.pos-faq-list details {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 10px;
}

.pos-faq-list summary {
    cursor: pointer;
    font-weight: 600;
    color: #0f172a;
}

.pos-faq-list p {
    margin: 10px 0 0;
    color: #475569;
}

.pos-final-cta {
    background: linear-gradient(135deg, #0f172a 0%, #111827 40%, #0f172a 100%);
    color: #e5e7eb;
}

.pos-final-cta .pos-heading-lg,
.pos-final-cta .pos-lead,
.pos-final-cta .pos-bullet-list li {
    color: #e5e7eb;
}

.pos-final-cta .pos-visual-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
}


@media (max-width: 768px) {
    .pos-heading-xl {
        font-size: 32px;
    }
    .pos-heading-lg {
        font-size: 26px;
    }
    .pos-hero {
        padding-top: 100px;
    }
    /* Hide visual row images on mobile */
    .pos-visual-row {
        display: none;
    }
}
