/* =============================================
   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 --- */
.pinco-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px 0 20px;
    border-radius: 10px;
    border: 1px solid rgba(252, 252, 252, 0.1);
    background: rgba(15, 14, 14, 0.6);
}

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

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

.pinco-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    color: #e9c05f;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-bottom: 2px solid rgba(233, 192, 95, 0.3);
    white-space: nowrap;
}

.pinco-table tbody tr {
    border-bottom: 1px solid rgba(252, 252, 252, 0.06);
    transition: background-color 0.15s ease;
}

.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: 12px 16px;
    color: rgba(252, 252, 252, 0.8);
    vertical-align: middle;
    line-height: 1.5;
}

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

/* --- 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 — responsive card layout on mobile */
    .pinco-table-wrapper {
        border: none;
        background: transparent;
        border-radius: 0;
        overflow: visible;
    }

    .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(252, 252, 252, 0.08);
        border-radius: 10px;
        padding: 16px;
        margin-bottom: 12px;
    }

    .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);
    }

    .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%;
    }
}


/* =============================================
   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%;
    }
}
