/* =============================================
   PINCO CONTENT STYLES
   Dark theme, mobile-first responsive design
   ============================================= */

/* --- Content Wrapper --- */
.pinco-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px 48px;
    font-family: Roboto, Arial, sans-serif;
    color: rgba(252, 252, 252, 0.85);
    line-height: 1.7;
    font-size: 15px;
}

/* --- Hero Section --- */
.pinco-hero-section {
    background: linear-gradient(135deg, rgba(34, 31, 31, 0.9) 0%, rgba(43, 40, 39, 0.7) 100%);
    border: 1px solid rgba(233, 192, 95, 0.25);
    border-radius: 12px;
    padding: 32px 28px;
    margin-bottom: 36px;
}

.pinco-hero-section h1 {
    font-size: 26px;
    font-weight: 700;
    color: #fcfcfc;
    margin: 0 0 16px 0;
    line-height: 1.35;
}

.pinco-hero-section p {
    margin: 0;
    color: rgba(252, 252, 252, 0.75);
    font-size: 15px;
    line-height: 1.75;
}

/* --- Sections --- */
.pinco-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(252, 252, 252, 0.08);
}

.pinco-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pinco-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #e9c05f;
    margin: 0 0 16px 0;
    line-height: 1.35;
}

.pinco-section h3 {
    font-size: 17px;
    font-weight: 600;
    color: rgba(252, 252, 252, 0.9);
    margin: 24px 0 12px 0;
    line-height: 1.4;
}

.pinco-section p {
    margin: 0 0 16px 0;
    color: rgba(252, 252, 252, 0.75);
    line-height: 1.75;
}

.pinco-section p:last-child {
    margin-bottom: 0;
}

/* --- Tables (Simple) --- */
@keyframes pincoRowFadeIn {
    0% {
        opacity: 0;
        transform: translateY(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.pinco-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px 0 20px;
    border-radius: 10px;
    border: 1px solid rgba(233, 192, 95, 0.18);
    background: rgba(15, 14, 14, 0.55);
}

.pinco-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    font-size: 14px;
}

.pinco-table thead {
    background: rgba(43, 40, 39, 0.85);
}

.pinco-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    color: #e9c05f;
    border-bottom: 1px solid rgba(233, 192, 95, 0.25);
    white-space: nowrap;
}

.pinco-table tbody tr {
    border-bottom: 1px solid rgba(252, 252, 252, 0.05);
    opacity: 1;
    animation: pincoRowFadeIn 0.45s ease both;
    transition: background-color 0.25s ease;
}

.pinco-table tbody tr:nth-child(1) { animation-delay: 0.04s; }
.pinco-table tbody tr:nth-child(2) { animation-delay: 0.08s; }
.pinco-table tbody tr:nth-child(3) { animation-delay: 0.12s; }
.pinco-table tbody tr:nth-child(4) { animation-delay: 0.16s; }
.pinco-table tbody tr:nth-child(5) { animation-delay: 0.20s; }
.pinco-table tbody tr:nth-child(6) { animation-delay: 0.24s; }
.pinco-table tbody tr:nth-child(7) { animation-delay: 0.28s; }
.pinco-table tbody tr:nth-child(8) { animation-delay: 0.32s; }

.pinco-table tbody tr:last-child {
    border-bottom: none;
}

.pinco-table tbody tr:hover {
    background-color: rgba(233, 192, 95, 0.05);
}

.pinco-table tbody td {
    padding: 11px 16px;
    color: rgba(252, 252, 252, 0.82);
    vertical-align: middle;
    line-height: 1.5;
}

.pinco-table tbody tr:nth-child(even) {
    background-color: rgba(252, 252, 252, 0.02);
}

/* --- Featured row (subtle highlight) --- */
.pinco-table tbody tr.pinco-row-featured {
    background-color: rgba(233, 192, 95, 0.08);
    box-shadow: inset 3px 0 0 0 #e9c05f;
}

.pinco-table tbody tr.pinco-row-featured td:first-child {
    color: #e9c05f;
    font-weight: 600;
}

.pinco-table tbody tr.pinco-row-featured:hover {
    background-color: rgba(233, 192, 95, 0.12);
}

/* --- Lists --- */
.pinco-numbered-list,
.pinco-bullet-list {
    margin: 12px 0 20px 0;
    padding-left: 24px;
    color: rgba(252, 252, 252, 0.75);
}

.pinco-numbered-list li,
.pinco-bullet-list li {
    margin-bottom: 10px;
    line-height: 1.65;
    padding-left: 4px;
}

.pinco-numbered-list li:last-child,
.pinco-bullet-list li:last-child {
    margin-bottom: 0;
}

.pinco-bullet-list {
    list-style-type: disc;
}

.pinco-bullet-list li::marker {
    color: #e9c05f;
}

.pinco-numbered-list li::marker {
    color: #e9c05f;
    font-weight: 600;
}

/* --- Advantages Grid --- */
.pinco-advantages-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 16px 0 20px;
}

.pinco-advantage-item {
    background: rgba(29, 29, 29, 0.7);
    border: 1px solid rgba(252, 252, 252, 0.08);
    border-radius: 10px;
    padding: 20px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pinco-advantage-item:hover {
    border-color: rgba(233, 192, 95, 0.25);
    background: rgba(34, 31, 31, 0.8);
}

.pinco-advantage-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #e9c05f;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.pinco-advantage-item p {
    font-size: 14px;
    color: rgba(252, 252, 252, 0.7);
    margin: 0;
    line-height: 1.65;
}

/* --- CTA Box --- */
.pinco-cta-box {
    background: linear-gradient(135deg, rgba(255, 1, 35, 0.12) 0%, rgba(233, 192, 95, 0.1) 100%);
    border: 1px solid rgba(233, 192, 95, 0.3);
    border-radius: 12px;
    padding: 28px 24px;
    margin: 36px 0;
    text-align: center;
}

.pinco-cta-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fcfcfc;
    margin: 0 0 12px 0;
}

.pinco-cta-box p {
    margin: 0;
    color: rgba(252, 252, 252, 0.8);
    font-size: 15px;
    line-height: 1.7;
}

/* --- FAQ Section --- */
.pinco-faq-section {
    border-bottom: none !important;
}

.pinco-faq-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #e9c05f !important;
    margin: 0 0 20px 0 !important;
}

.pinco-faq-item {
    background: rgba(29, 29, 29, 0.5);
    border: 1px solid rgba(252, 252, 252, 0.08);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 12px;
    transition: border-color 0.2s ease;
}

.pinco-faq-item:last-child {
    margin-bottom: 0;
}

.pinco-faq-item:hover {
    border-color: rgba(233, 192, 95, 0.2);
}

.pinco-faq-question {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #fcfcfc !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.45 !important;
}

.pinco-faq-answer {
    font-size: 14px;
    color: rgba(252, 252, 252, 0.7);
    margin: 0;
    line-height: 1.7;
}

/* --- Strong / Bold text accent --- */
.pinco-content-wrapper strong {
    color: rgba(252, 252, 252, 0.95);
    font-weight: 600;
}


/* =============================================
   RESPONSIVE: TABLET (max-width: 768px)
   ============================================= */
@media screen and (max-width: 768px) {
    .pinco-content-wrapper {
        padding: 24px 16px 36px;
        font-size: 14px;
    }

    .pinco-hero-section {
        padding: 24px 20px;
        margin-bottom: 28px;
    }

    .pinco-hero-section h1 {
        font-size: 21px;
    }

    .pinco-section h2 {
        font-size: 19px;
    }

    .pinco-section h3 {
        font-size: 16px;
    }

    .pinco-advantages-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pinco-advantage-item {
        padding: 16px;
    }

    .pinco-cta-box {
        padding: 24px 20px;
    }

    .pinco-cta-box h3 {
        font-size: 18px;
    }

    /* Tables — animated responsive card layout on mobile */
    .pinco-table-wrapper {
        border: none;
        background: transparent;
        border-radius: 0;
        overflow: visible;
        animation: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .pinco-table {
        min-width: 0;
    }

    .pinco-table thead {
        display: none;
    }

    .pinco-table tbody tr {
        display: block;
        background: rgba(29, 29, 29, 0.6);
        border: 1px solid rgba(233, 192, 95, 0.12);
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 12px;
        transform: none;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .pinco-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .pinco-table tbody tr:nth-child(even) {
        background-color: rgba(29, 29, 29, 0.6);
    }

    .pinco-table tbody tr:hover {
        background-color: rgba(43, 40, 39, 0.7);
        transform: none;
        box-shadow: 0 0 14px -3px rgba(233, 192, 95, 0.12);
        border-color: rgba(233, 192, 95, 0.3);
    }

    .pinco-table tbody tr:hover td:first-child {
        padding-left: 0;
    }

    .pinco-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid rgba(252, 252, 252, 0.05);
        font-size: 13px;
    }

    .pinco-table tbody td:last-child {
        border-bottom: none;
    }

    .pinco-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: rgba(233, 192, 95, 0.85);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        flex-shrink: 0;
        margin-right: 12px;
        max-width: 45%;
    }

    /* Featured row on mobile */
    .pinco-table tbody tr.pinco-row-featured {
        border: 1px solid rgba(233, 192, 95, 0.45);
        box-shadow:
            0 0 18px -2px rgba(233, 192, 95, 0.22),
            inset 0 0 0 1px rgba(233, 192, 95, 0.18);
        background: linear-gradient(
            135deg,
            rgba(233, 192, 95, 0.08),
            rgba(29, 29, 29, 0.7)
        );
    }

    .pinco-table tbody tr.pinco-row-featured:hover {
        border-color: rgba(233, 192, 95, 0.65);
        box-shadow:
            0 0 22px -2px rgba(233, 192, 95, 0.32),
            inset 0 0 0 1px rgba(233, 192, 95, 0.25);
    }
}


/* =============================================
   RESPONSIVE: SMALL PHONE (max-width: 480px)
   ============================================= */
@media screen and (max-width: 480px) {
    .pinco-content-wrapper {
        padding: 20px 12px 28px;
        font-size: 13.5px;
    }

    .pinco-hero-section {
        padding: 20px 16px;
        border-radius: 8px;
    }

    .pinco-hero-section h1 {
        font-size: 18px;
    }

    .pinco-hero-section p {
        font-size: 13.5px;
    }

    .pinco-section {
        margin-bottom: 28px;
        padding-bottom: 28px;
    }

    .pinco-section h2 {
        font-size: 17px;
    }

    .pinco-section h3 {
        font-size: 15px;
    }

    .pinco-advantage-item {
        padding: 14px;
    }

    .pinco-advantage-item h4 {
        font-size: 14px;
    }

    .pinco-advantage-item p {
        font-size: 13px;
    }

    .pinco-cta-box {
        padding: 20px 16px;
        border-radius: 8px;
    }

    .pinco-cta-box h3 {
        font-size: 16px;
    }

    .pinco-cta-box p {
        font-size: 13.5px;
    }

    .pinco-faq-item {
        padding: 16px;
    }

    .pinco-faq-question {
        font-size: 14px !important;
    }

    .pinco-faq-answer {
        font-size: 13px;
    }

    .pinco-numbered-list,
    .pinco-bullet-list {
        padding-left: 18px;
    }

    .pinco-numbered-list li,
    .pinco-bullet-list li {
        font-size: 13.5px;
    }

    .pinco-table tbody td {
        flex-direction: column;
        align-items: flex-start;
    }

    .pinco-table tbody td::before {
        margin-right: 0;
        margin-bottom: 4px;
        max-width: 100%;
    }
}


/* =============================================
   ACCESSIBILITY: Reduced Motion
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    .pinco-table-wrapper {
        animation: none;
    }

    .pinco-table thead {
        animation: none;
        background: rgba(43, 40, 39, 0.85);
    }

    .pinco-table tbody tr {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .pinco-table tbody tr:hover {
        transform: none;
    }
}

/* =============================================
   ENHANCED ANIMATIONS FOR LISTS & TABLES
   ============================================= */

/* --- Animated List Items --- */
@keyframes pincoListItemSlide {
    0% {
        opacity: 0;
        transform: translateX(-16px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pincoMarkerPulse {
    0%, 100% {
        text-shadow: 0 0 0 rgba(233, 192, 95, 0);
    }
    50% {
        text-shadow: 0 0 8px rgba(233, 192, 95, 0.6);
    }
}

.pinco-numbered-list li,
.pinco-bullet-list li {
    opacity: 0;
    animation: pincoListItemSlide 0.5s ease forwards;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
}

.pinco-numbered-list li:nth-child(1),
.pinco-bullet-list li:nth-child(1) { animation-delay: 0.08s; }
.pinco-numbered-list li:nth-child(2),
.pinco-bullet-list li:nth-child(2) { animation-delay: 0.16s; }
.pinco-numbered-list li:nth-child(3),
.pinco-bullet-list li:nth-child(3) { animation-delay: 0.24s; }
.pinco-numbered-list li:nth-child(4),
.pinco-bullet-list li:nth-child(4) { animation-delay: 0.32s; }
.pinco-numbered-list li:nth-child(5),
.pinco-bullet-list li:nth-child(5) { animation-delay: 0.40s; }
.pinco-numbered-list li:nth-child(6),
.pinco-bullet-list li:nth-child(6) { animation-delay: 0.48s; }
.pinco-numbered-list li:nth-child(7),
.pinco-bullet-list li:nth-child(7) { animation-delay: 0.56s; }
.pinco-numbered-list li:nth-child(8),
.pinco-bullet-list li:nth-child(8) { animation-delay: 0.64s; }

.pinco-numbered-list li:hover,
.pinco-bullet-list li:hover {
    transform: translateX(4px);
    color: rgba(252, 252, 252, 0.95);
}

.pinco-numbered-list li:hover::marker,
.pinco-bullet-list li:hover::marker {
    animation: pincoMarkerPulse 1.2s ease-in-out infinite;
}

/* Additional polish on tables — subtle cell glow on hover */
.pinco-table tbody tr {
    will-change: transform;
}

.pinco-table-wrapper:hover {
    border-color: rgba(233, 192, 95, 0.45);
    box-shadow: 0 4px 24px -6px rgba(233, 192, 95, 0.18);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* === Enhanced animations for comparison tables === */
@keyframes pincoHeaderShimmer {
    0% { background-position: -150% 0; }
    100% { background-position: 250% 0; }
}

@keyframes pincoCheckPop {
    0% { transform: scale(0.4); opacity: 0; }
    60% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pincoWrapperReveal {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}

.pinco-table-wrapper {
    animation: pincoWrapperReveal 0.5s ease both;
    position: relative;
    overflow: hidden;
}

.pinco-table-wrapper::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(233, 192, 95, 0) 20%,
        rgba(233, 192, 95, 0.6) 50%,
        rgba(233, 192, 95, 0) 80%,
        transparent 100%);
    background-size: 200% 100%;
    animation: pincoHeaderShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

.pinco-table thead th {
    position: relative;
    background: linear-gradient(90deg, rgba(43, 40, 39, 0.85) 0%, rgba(58, 50, 38, 0.9) 50%, rgba(43, 40, 39, 0.85) 100%);
    background-size: 200% 100%;
    animation: pincoHeaderShimmer 5s ease-in-out infinite;
}

.pinco-table tbody tr {
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pinco-table tbody tr:hover {
    background-color: rgba(233, 192, 95, 0.08);
    transform: translateX(3px);
    box-shadow: inset 3px 0 0 0 #e9c05f;
}

/* Comparison cells */
.pinco-yes,
.pinco-no {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    transition: transform 0.25s ease;
}

.pinco-yes {
    color: #6dd49a;
}

.pinco-no {
    color: rgba(252, 252, 252, 0.4);
    font-weight: 500;
}

.pinco-yes::before {
    content: "✓";
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    background: rgba(109, 212, 154, 0.18);
    color: #6dd49a;
    font-size: 12px;
    animation: pincoCheckPop 0.45s ease both;
}

.pinco-no::before {
    content: "—";
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    background: rgba(252, 252, 252, 0.06);
    color: rgba(252, 252, 252, 0.5);
    font-size: 14px;
}

.pinco-table tbody tr:hover .pinco-yes,
.pinco-table tbody tr:hover .pinco-no {
    transform: scale(1.05);
}

.pinco-compare-col {
    color: #e9c05f !important;
    font-weight: 600 !important;
}

@media (prefers-reduced-motion: reduce) {
    .pinco-numbered-list li,
    .pinco-bullet-list li,
    .pinco-table-wrapper,
    .pinco-table thead th,
    .pinco-table-wrapper::after {
        opacity: 1;
        animation: none;
    }
}

/* =================================================================
   ===   UNIQUE STYLING — tables & lists redesigned with bold palette
   ===   Palette: violet #8b5cf6, magenta #ec4899, cyan #22d3ee,
   ===            emerald #10b981, gold #e9c05f (heritage accent)
   ================================================================= */

/* ===== TABLES — neon-prism redesign ===== */
@keyframes pincoPrismGlow {
    0%, 100% { box-shadow: 0 0 28px -8px rgba(139, 92, 246, 0.35), 0 0 48px -16px rgba(34, 211, 238, 0.25); }
    50%      { box-shadow: 0 0 28px -8px rgba(236, 72, 153, 0.40), 0 0 48px -16px rgba(139, 92, 246, 0.30); }
}

@keyframes pincoBorderRotate {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes pincoCellPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
    50%      { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18); }
}

.pinco-table-wrapper {
    position: relative;
    padding: 2px;
    border: none !important;
    background: linear-gradient(
        120deg,
        #8b5cf6 0%,
        #ec4899 25%,
        #22d3ee 50%,
        #8b5cf6 75%,
        #ec4899 100%
    );
    background-size: 200% 200%;
    border-radius: 14px;
    overflow: hidden;
    animation:
        pincoBorderRotate 8s linear infinite,
        pincoWrapperReveal 0.55s ease both,
        pincoPrismGlow 4s ease-in-out infinite;
}

.pinco-table-wrapper::after {
    /* soft sweep highlight */
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0) 70%,
        transparent 100%
    );
    animation: pincoSweep 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes pincoSweep {
    0%, 30%   { left: -100%; }
    60%, 100% { left: 100%; }
}

.pinco-table-wrapper:hover {
    border-color: transparent;
    box-shadow:
        0 0 36px -6px rgba(236, 72, 153, 0.45),
        0 0 64px -16px rgba(34, 211, 238, 0.35);
}

.pinco-table {
    position: relative;
    background:
        radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(34, 211, 238, 0.16) 0%, transparent 50%),
        linear-gradient(180deg, rgba(15, 14, 14, 0.96) 0%, rgba(20, 17, 28, 0.96) 100%);
}

.pinco-table thead {
    background: transparent;
}

.pinco-table thead th {
    background: linear-gradient(
        90deg,
        rgba(139, 92, 246, 0.45) 0%,
        rgba(236, 72, 153, 0.40) 50%,
        rgba(34, 211, 238, 0.45) 100%
    );
    background-size: 200% 100%;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 12px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
    animation: pincoBorderRotate 6s linear infinite;
}

.pinco-table thead th.pinco-compare-col {
    color: #ffffff !important;
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.30), rgba(139, 92, 246, 0.30));
    border-left: 1px solid rgba(255, 255, 255, 0.10);
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.pinco-table tbody tr {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(139, 92, 246, 0.12) !important;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.35s ease,
                box-shadow 0.35s ease;
}

.pinco-table tbody tr:nth-child(even) {
    background-color: rgba(139, 92, 246, 0.04) !important;
}

.pinco-table tbody tr:hover {
    background: linear-gradient(
        90deg,
        rgba(139, 92, 246, 0.18) 0%,
        rgba(236, 72, 153, 0.12) 50%,
        rgba(34, 211, 238, 0.18) 100%
    ) !important;
    transform: translateX(4px) scale(1.005);
    box-shadow:
        inset 4px 0 0 0 #ec4899,
        inset -4px 0 0 0 #22d3ee,
        0 4px 18px -8px rgba(236, 72, 153, 0.4);
}

.pinco-table tbody td {
    color: rgba(252, 252, 252, 0.88);
    border: none;
}

.pinco-table tbody td:first-child {
    font-weight: 500;
    color: #ffffff;
    border-left: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.pinco-table tbody tr:hover td:first-child {
    border-left-color: #ec4899;
    color: #fce7f3;
}

/* "Yes" cells — emerald with glow */
.pinco-yes {
    color: #34d399 !important;
    text-shadow: 0 0 8px rgba(52, 211, 153, 0.45);
}

.pinco-yes::before {
    content: "✓" !important;
    background: linear-gradient(135deg, #10b981 0%, #22d3ee 100%) !important;
    color: #ffffff !important;
    width: 20px !important;
    height: 20px !important;
    line-height: 20px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.5), inset 0 0 6px rgba(255, 255, 255, 0.25);
    animation: pincoCheckPop 0.5s ease both, pincoCellPulse 3s ease-in-out infinite;
}

/* "No" cells — softer with subtle outline */
.pinco-no {
    color: rgba(252, 252, 252, 0.45) !important;
    font-style: italic;
}

.pinco-no::before {
    content: "✕" !important;
    background: rgba(236, 72, 153, 0.10) !important;
    color: rgba(236, 72, 153, 0.55) !important;
    border: 1px solid rgba(236, 72, 153, 0.25);
    width: 20px !important;
    height: 20px !important;
    line-height: 18px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
}

.pinco-table tbody tr:hover .pinco-yes {
    transform: scale(1.08);
    text-shadow: 0 0 14px rgba(52, 211, 153, 0.75);
}

.pinco-table tbody tr:hover .pinco-no {
    color: rgba(236, 72, 153, 0.7) !important;
}

/* ===== NUMBERED LIST — premium step-flow ===== */
.pinco-numbered-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 18px 0 24px 0 !important;
    counter-reset: pinco-step;
    position: relative;
}

.pinco-numbered-list::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: linear-gradient(180deg,
        #ec4899 0%,
        #8b5cf6 35%,
        #22d3ee 70%,
        #10b981 100%);
    border-radius: 2px;
    opacity: 0.5;
}

.pinco-numbered-list li {
    counter-increment: pinco-step;
    position: relative;
    padding: 12px 16px 12px 56px !important;
    margin-bottom: 8px !important;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.06) 0%, transparent 100%);
    border-radius: 10px;
    border-left: none !important;
    list-style: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pinco-numbered-list li::marker { content: none !important; }

.pinco-numbered-list li::before {
    content: counter(pinco-step);
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    box-shadow:
        0 0 0 3px rgba(15, 14, 14, 0.95),
        0 0 14px rgba(236, 72, 153, 0.5);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.35s ease;
    z-index: 2;
}

.pinco-numbered-list li:nth-child(2)::before { background: linear-gradient(135deg, #f97316 0%, #ec4899 100%); }
.pinco-numbered-list li:nth-child(3)::before { background: linear-gradient(135deg, #e9c05f 0%, #f97316 100%); }
.pinco-numbered-list li:nth-child(4)::before { background: linear-gradient(135deg, #10b981 0%, #e9c05f 100%); }
.pinco-numbered-list li:nth-child(5)::before { background: linear-gradient(135deg, #22d3ee 0%, #10b981 100%); }
.pinco-numbered-list li:nth-child(6)::before { background: linear-gradient(135deg, #8b5cf6 0%, #22d3ee 100%); }

.pinco-numbered-list li:hover {
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.14) 0%, rgba(139, 92, 246, 0.08) 100%);
    transform: translateX(4px);
}

.pinco-numbered-list li:hover::before {
    transform: translateY(-50%) scale(1.15) rotate(-8deg);
    box-shadow:
        0 0 0 3px rgba(15, 14, 14, 0.95),
        0 0 22px rgba(236, 72, 153, 0.7);
}

/* ===== BULLET LIST — diamond chip markers ===== */
.pinco-bullet-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 18px 0 24px 0 !important;
}

.pinco-bullet-list li {
    list-style: none !important;
    position: relative;
    padding: 12px 16px 12px 42px !important;
    margin-bottom: 8px !important;
    background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.pinco-bullet-list li::marker { content: none !important; }

.pinco-bullet-list li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translateY(-50%) rotate(45deg);
    background: linear-gradient(135deg, #22d3ee 0%, #8b5cf6 100%);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.6);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease;
}

.pinco-bullet-list li:hover {
    transform: translateX(6px);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.12) 0%, rgba(139, 92, 246, 0.10) 100%);
    border-color: rgba(34, 211, 238, 0.45);
}

.pinco-bullet-list li:hover::before {
    transform: translateY(-50%) rotate(225deg) scale(1.2);
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.9);
}

/* ===== ADVANTAGES GRID — multi-color top-bar cards ===== */
.pinco-advantage-item {
    position: relative;
    background: linear-gradient(180deg, rgba(29, 29, 29, 0.85) 0%, rgba(20, 17, 28, 0.85) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease !important;
}

.pinco-advantage-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
    transition: height 0.3s ease;
}

.pinco-advantage-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Per-card color accents — 7 unique stripes */
.pinco-advantages-list .pinco-advantage-item:nth-child(1)::before { background: linear-gradient(90deg, #ec4899, #f97316); }
.pinco-advantages-list .pinco-advantage-item:nth-child(2)::before { background: linear-gradient(90deg, #f97316, #e9c05f); }
.pinco-advantages-list .pinco-advantage-item:nth-child(3)::before { background: linear-gradient(90deg, #e9c05f, #10b981); }
.pinco-advantages-list .pinco-advantage-item:nth-child(4)::before { background: linear-gradient(90deg, #10b981, #22d3ee); }
.pinco-advantages-list .pinco-advantage-item:nth-child(5)::before { background: linear-gradient(90deg, #22d3ee, #8b5cf6); }
.pinco-advantages-list .pinco-advantage-item:nth-child(6)::before { background: linear-gradient(90deg, #8b5cf6, #ec4899); }
.pinco-advantages-list .pinco-advantage-item:nth-child(7)::before { background: linear-gradient(90deg, #ec4899, #22d3ee); }

.pinco-advantage-item:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.4) !important;
    box-shadow:
        0 12px 32px -10px rgba(139, 92, 246, 0.35),
        0 6px 16px -8px rgba(236, 72, 153, 0.25) !important;
    background: linear-gradient(180deg, rgba(34, 31, 31, 0.95) 0%, rgba(28, 22, 38, 0.95) 100%) !important;
}

.pinco-advantage-item:hover::before { height: 5px; }
.pinco-advantage-item:hover::after { opacity: 1; }

.pinco-advantage-item strong {
    background: linear-gradient(135deg, #e9c05f 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
    .pinco-table-wrapper,
    .pinco-table-wrapper::after,
    .pinco-table thead th,
    .pinco-yes::before,
    .pinco-numbered-list li::before,
    .pinco-bullet-list li::before {
        animation: none !important;
    }
}
