/*
 * Page Content Sections – style.css
 * Mobile-First | Semantic | SEO-optimised
 * ========================================
 */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
    --pcs-primary: #4f46e5;
    --pcs-primary-dark: #3730a3;
    --pcs-primary-light: #eef2ff;
    --pcs-text: #1e293b;
    --pcs-text-muted: #64748b;
    --pcs-bg: #f8fafc;
    --pcs-white: #ffffff;
    --pcs-border: #e2e8f0;
    --pcs-amber: #f59e0b;
    --pcs-radius: 12px;
    --pcs-radius-sm: 8px;
    --pcs-shadow: 0 1px 8px rgba(15, 23, 42, .07);
    --pcs-shadow-hover: 0 6px 20px rgba(79, 70, 229, .12);
    --pcs-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --pcs-transition: .22s cubic-bezier(.4, 0, .2, 1);
}

/* ── Wrapper ───────────────────────────────────────────────── */
.pcs-wrapper {
    font-family: var(--pcs-font);
    color: var(--pcs-text);
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 16px 48px;
}

/* ── Section Header ────────────────────────────────────────── */
.pcs-section-header {
    text-align: center;
    padding: 32px 16px 24px;
}

.pcs-section-title {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    font-weight: 800;
    color: var(--pcs-text);
    margin: 0 0 8px;
    line-height: 1.3;
}

.pcs-section-subtitle {
    font-size: .95rem;
    color: var(--pcs-text-muted);
    margin: 0;
    max-width: 640px;
    margin-inline: auto;
}

/* ══════════════════════════════════════════════════════════════
 * TAB NAVIGATION
 * ═════════════════════════════════════════════════════════════ */
.pcs-tab-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--pcs-white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
    padding: 0 8px;
}

.pcs-tab-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pcs-tab-list::-webkit-scrollbar {
    display: none;
}

.pcs-tab-list>li {
    flex-shrink: 0;
}

.pcs-tab-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 13px 16px;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: var(--pcs-text-muted);
    font-size: .875rem;
    font-weight: 600;
    font-family: var(--pcs-font);
    cursor: pointer;
    transition: color var(--pcs-transition), border-color var(--pcs-transition), background var(--pcs-transition);
    white-space: nowrap;
    border-radius: var(--pcs-radius-sm) var(--pcs-radius-sm) 0 0;
    line-height: 1;
}

.pcs-tab-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pcs-tab-btn:hover {
    color: var(--pcs-primary);
    background: var(--pcs-primary-light);
}

.pcs-tab-btn--active,
.pcs-tab-btn[aria-selected="true"] {
    color: var(--pcs-primary);
    border-bottom-color: var(--pcs-primary);
    background: var(--pcs-primary-light);
}

/* ── Panel visibility ──────────────────────────────────────── */
.pcs-panel {
    display: none;
    animation: pcsTabIn .3s ease-out;
}

.pcs-panel--active,
.pcs-panel:not([hidden]) {
    display: block;
}

@keyframes pcsTabIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════════════════════════
 * STEPS
 * ═════════════════════════════════════════════════════════════ */
.pcs-steps-section {
    padding: 0 0 16px;
}

.pcs-steps-grid {
    list-style: none;
    margin: 0;
    padding: 0 8px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.pcs-step-card {
    background: var(--pcs-white);
    border: 1px solid var(--pcs-border);
    border-radius: var(--pcs-radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--pcs-shadow);
    transition: box-shadow var(--pcs-transition), transform var(--pcs-transition);
}

.pcs-step-card:hover {
    box-shadow: var(--pcs-shadow-hover);
    transform: translateY(-3px);
}

.pcs-step-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.pcs-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--pcs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--pcs-white);
}

.pcs-step-icon svg {
    width: 32px;
    height: 32px;
}

.pcs-step-badge {
    position: absolute;
    bottom: -2px;
    right: -6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f59e0b;
    color: var(--pcs-white);
    font-size: .75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--pcs-white);
}

.pcs-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pcs-text);
    margin: 0 0 8px;
}

.pcs-step-desc {
    font-size: .875rem;
    color: var(--pcs-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════
 * REVIEWS
 * ═════════════════════════════════════════════════════════════ */
.pcs-reviews-section {
    padding: 0 0 16px;
}

.pcs-reviews-grid {
    list-style: none;
    margin: 0;
    padding: 0 8px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.pcs-review-card {
    background: var(--pcs-white);
    border: 1px solid var(--pcs-border);
    border-radius: var(--pcs-radius);
    padding: 20px;
    box-shadow: var(--pcs-shadow);
    transition: box-shadow var(--pcs-transition), transform var(--pcs-transition);
}

.pcs-review-card:hover {
    box-shadow: var(--pcs-shadow-hover);
    transform: translateY(-2px);
}

.pcs-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pcs-reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pcs-primary), var(--pcs-primary-dark));
    color: var(--pcs-white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.pcs-reviewer-avatar img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.pcs-reviewer-info {
    flex: 1;
    min-width: 0;
}

.pcs-reviewer-name {
    display: block;
    font-weight: 700;
    font-size: .9rem;
    color: var(--pcs-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pcs-reviewer-role {
    font-size: .8rem;
    color: var(--pcs-text-muted);
}

.pcs-review-stars {
    display: flex;
    gap: 2px;
    color: var(--pcs-amber);
    flex-shrink: 0;
}

.pcs-review-text {
    font-size: .875rem;
    color: var(--pcs-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════
 * FAQ
 * ═════════════════════════════════════════════════════════════ */
.pcs-faq-section {
    padding: 0 0 16px;
}

.pcs-faq-grid {
    margin: 0;
    padding: 0 8px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.pcs-faq-item {
    border-bottom: 1px solid var(--pcs-border);
}

.pcs-faq-item:first-child {
    border-top: 1px solid var(--pcs-border);
}

.pcs-faq-question {
    margin: 0;
}

.pcs-faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    border: none;
    background: transparent;
    font-family: var(--pcs-font);
    font-size: .9rem;
    font-weight: 600;
    color: var(--pcs-text);
    text-align: left;
    cursor: pointer;
    transition: color var(--pcs-transition);
}

.pcs-faq-toggle:hover {
    color: var(--pcs-primary-dark);
    background-color: var(--pcs-primary-light);
    border-radius: var(--pcs-radius-sm);
    padding-left: 8px;
    padding-right: 8px;
}

.pcs-faq-toggle[aria-expanded="true"] {
    color: var(--pcs-primary);
}

.pcs-faq-chevron {
    display: flex;
    align-items: center;
    color: var(--pcs-text-muted);
    flex-shrink: 0;
    transition: transform var(--pcs-transition);
}

.pcs-faq-toggle[aria-expanded="true"] .pcs-faq-chevron {
    transform: rotate(180deg);
    color: var(--pcs-primary);
}

.pcs-faq-answer {
    margin: 0;
    overflow: hidden;
}

.pcs-faq-answer[hidden] {
    display: block;
    /* JS controls visibility via max-height */
    max-height: 0;
}

.pcs-faq-answer p {
    padding: 0 0 16px;
    margin: 0;
    font-size: .875rem;
    color: var(--pcs-text-muted);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
 * PRICE TABLE
 * ═════════════════════════════════════════════════════════════ */
.pcs-price-section {
    padding: 0 0 16px;
}

.pcs-price-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 8px;
    border-radius: var(--pcs-radius);
    box-shadow: var(--pcs-shadow);
}

.pcs-price-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    background: var(--pcs-white);
    font-size: .875rem;
    min-width: 520px;
}

.pcs-price-table thead tr {
    background: var(--pcs-primary);
}

.pcs-price-table thead th {
    color: var(--pcs-white);
    font-weight: 700;
    padding: 14px 20px;
    text-align: left;
    font-size: .8125rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pcs-price-table tbody tr {
    border-bottom: 1px solid var(--pcs-border);
    transition: background var(--pcs-transition);
}

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

.pcs-price-table tbody tr:hover {
    background: var(--pcs-primary-light);
}

.pcs-price-table tbody td {
    padding: 14px 20px;
    color: var(--pcs-text);
    vertical-align: middle;
}

.pcs-product-name {
    font-weight: 600;
}

.pcs-regular-price s {
    color: var(--pcs-text-muted);
    font-size: .85rem;
}

.pcs-sale-price strong {
    color: var(--pcs-primary);
    font-weight: 800;
    font-size: 1rem;
}

.pcs-savings-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--pcs-primary);
    color: var(--pcs-white);
    font-size: .8rem;
    font-weight: 700;
    white-space: nowrap;
}

/* ── Error / empty states ──────────────────────────────────── */
.pcs-woo-missing,
.pcs-no-category,
.pcs-no-products {
    padding: 32px;
    text-align: center;
    color: var(--pcs-text-muted);
    font-style: italic;
}

/* ══════════════════════════════════════════════════════════════
 * TABLET  ≥768px
 * ═════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {

    .pcs-wrapper {
        padding: 0 24px 64px;
    }

    .pcs-tab-btn {
        font-size: .9375rem;
        padding: 14px 20px;
    }

    /* Steps: 2 col */
    .pcs-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reviews: 2 col */
    .pcs-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FAQ: 2 col */
    .pcs-faq-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 0;
    }

    .pcs-faq-item {
        border-bottom: 1px solid var(--pcs-border);
    }

    /* Odd items get right border to separate columns */
    .pcs-faq-item:nth-child(odd) {
        border-right: 1px solid var(--pcs-border);
        padding-right: 24px;
    }

    .pcs-faq-item:nth-child(even) {
        padding-left: 24px;
    }
}

/* ══════════════════════════════════════════════════════════════
 * DESKTOP  ≥1024px
 * ═════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {

    .pcs-wrapper {
        padding: 0 32px 80px;
    }

    /* Steps: 4 col */
    .pcs-steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Reviews: 3 col */
    .pcs-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pcs-section-title {
        font-size: 2rem;
    }
}

/* ══════════════════════════════════════════════════════════════
 * REDUCED MOTION
 * ═════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    .pcs-step-card,
    .pcs-review-card,
    .pcs-tab-btn,
    .pcs-faq-chevron,
    .pcs-panel {
        transition: none;
        animation: none;
    }
}

/* ══════════════════════════════════════════════════════════════
 * COMPARISON TABLE  [pcs_comparison_table]
 * Premium redesign — floating primary column, icon badges, gradients
 * ═════════════════════════════════════════════════════════════ */
.pcs-ct-wrap {
    --pcs-ct-color: #ff6b35;
    --pcs-ct-color-rgb: 255, 107, 53;
    --pcs-ct-check: #16a34a;
    --pcs-ct-cross: #94a3b8;
    font-family: var(--pcs-font);
    max-width: 820px;
    margin: 32px auto;
    padding: 0 0 48px;
}

/* ── Outer shell ─────────────────────────────────────────────── */
.pcs-ct-table {
    border-radius: 20px;
    overflow: visible;
    /* allow primary column to "float" */
    background: transparent;
}

/* ── Grid row ────────────────────────────────────────────────── */
.pcs-ct-tr {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    align-items: stretch;
}

/* ═══════════════════════════════════════════════════════════════
 * HEADER ROW
 * ═════════════════════════════════════════════════════════════ */
.pcs-ct-thead {
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .10));
}

.pcs-ct-tr--head .pcs-ct-th {
    padding: 20px 16px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #94a3b8;
    background: #f8fafc;
    border-bottom: 1px solid #e6ebf3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pcs-ct-th--feature {
    border-radius: 16px 0 0 0;
    justify-content: flex-start !important;
    padding-left: 28px !important;
    color: #475569;
    font-size: .8rem;
}

.pcs-ct-th--others {
    border-radius: 0 16px 0 0;
}

/* ── Primary / highlighted header ─────────────────────────────── */
.pcs-ct-th--primary {
    background: linear-gradient(135deg, var(--pcs-ct-color) 0%, #ff4500 100%) !important;
    color: #fff !important;
    border-bottom: none !important;
    flex-direction: column;
    gap: 8px;
    padding: 28px 16px !important;
    box-shadow:
        0 -4px 0 0 var(--pcs-ct-color),
        0 0 0 3px var(--pcs-ct-color),
        0 12px 40px rgba(var(--pcs-ct-color-rgb), .40);
    position: relative;
    z-index: 10;
    border-radius: 16px 16px 0 0;
    margin: -12px -3px 0;
    transform: translateY(-4px);
}

.pcs-ct-th--primary::before {
    content: '⭐ En İyi Seçim';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #92400e;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.pcs-ct-logo {
    max-height: 38px;
    max-width: 130px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
}

.pcs-ct-primary-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

/* ═══════════════════════════════════════════════════════════════
 * DATA ROWS
 * ═════════════════════════════════════════════════════════════ */
.pcs-ct-td {
    padding: 16px 16px;
    font-size: .875rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    transition: background .15s ease;
}

/* First and last round corners on feature/others columns */

.pcs-ct-tbody .pcs-ct-tr:last-child .pcs-ct-td--feature {
    border-radius: 0 0 0 16px;
    border-bottom: 1px solid #f1f5f9;
}

.pcs-ct-tbody .pcs-ct-tr:last-child .pcs-ct-td--others {
    border-radius: 0 0 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

/* Zebra – very subtle */
.pcs-ct-tbody .pcs-ct-tr:nth-child(even) .pcs-ct-td--feature,
.pcs-ct-tbody .pcs-ct-tr:nth-child(even) .pcs-ct-td--others {
    background: #fafbfd;
}

/* Hover row highlight */
.pcs-ct-tbody .pcs-ct-tr:hover .pcs-ct-td--feature,
.pcs-ct-tbody .pcs-ct-tr:hover .pcs-ct-td--others {
    background: #eff6ff;
}

/* ── Feature column (left) ──────────────────────────────────── */
.pcs-ct-td--feature {
    justify-content: flex-start;
    padding-left: 28px;
    font-weight: 600;
    color: #334155;
    gap: 10px;
}

.pcs-ct-td--feature::before {
    content: '';
    width: 3px;
    height: 18px;
    border-radius: 2px;
    background: #e2e8f0;
    flex-shrink: 0;
}

/* ── Primary column (center – floating) ─────────────────────── */
.pcs-ct-td--primary {
    background: rgba(var(--pcs-ct-color-rgb), .05) !important;
    border-left: 3px solid var(--pcs-ct-color);
    border-right: 3px solid var(--pcs-ct-color);
    font-weight: 700;
    color: #1e293b;
    position: relative;
    z-index: 5;
    flex-direction: column;
    gap: 4px;
    box-shadow: -4px 0 16px rgba(var(--pcs-ct-color-rgb), .06), 4px 0 16px rgba(var(--pcs-ct-color-rgb), .06);
}

.pcs-ct-tbody .pcs-ct-tr:nth-child(even) .pcs-ct-td--primary {
    background: rgba(var(--pcs-ct-color-rgb), .08) !important;
}

.pcs-ct-tbody .pcs-ct-tr:hover .pcs-ct-td--primary {
    background: rgba(var(--pcs-ct-color-rgb), .12) !important;
}

/* Bottom cap for primary column */
.pcs-ct-tbody .pcs-ct-tr:last-child .pcs-ct-td--primary {
    border-bottom: 3px solid var(--pcs-ct-color);
    border-radius: 0 0 12px 12px;
    padding-bottom: 20px;
}

/* ── Others column (right) ──────────────────────────────────── */
.pcs-ct-td--others {
    color: #94a3b8;
    flex-direction: column;
    gap: 4px;
}

/* ═══════════════════════════════════════════════════════════════
 * ICONS – circular badge style
 * ═════════════════════════════════════════════════════════════ */
.pcs-ct-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pcs-ct-td--primary .pcs-ct-icon--check {
    background: rgba(255, 255, 255, .7);
    color: var(--pcs-ct-color);
    box-shadow: 0 2px 8px rgba(var(--pcs-ct-color-rgb), .20);
}

.pcs-ct-td--others .pcs-ct-icon--cross {
    background: #f1f5f9;
    color: #cbd5e1;
}

.pcs-ct-td--feature .pcs-ct-icon--check,
.pcs-ct-td--feature .pcs-ct-icon--cross {
    width: 24px;
    height: 24px;
}

.pcs-ct-icon svg {
    width: 18px;
    height: 18px;
}

.pcs-ct-cell-text {
    font-size: .78rem;
    line-height: 1.3;
    text-align: center;
    font-weight: 500;
}

/* Primary cell text – slightly larger */
.pcs-ct-td--primary .pcs-ct-cell-text {
    font-size: .82rem;
    font-weight: 700;
    color: #374151;
}

/* ═══════════════════════════════════════════════════════════════
 * RESPONSIVE
 * ═════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .pcs-ct-wrap {
        margin: 16px auto;
        padding: 0 0 32px;
    }

    .pcs-ct-tr {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .pcs-ct-td--feature,
    .pcs-ct-th--feature {
        font-size: .75rem;
        padding-left: 14px !important;
    }

    .pcs-ct-td {
        padding: 12px 6px;
        font-size: .75rem;
    }

    .pcs-ct-icon {
        width: 26px;
        height: 26px;
    }

    .pcs-ct-icon svg {
        width: 14px;
        height: 14px;
    }

    .pcs-ct-cell-text {
        font-size: .68rem;
    }

    .pcs-ct-th--primary {
        margin: -8px -2px 0;
        padding: 20px 8px !important;
    }

    .pcs-ct-th--primary::before {
        font-size: .58rem;
        padding: 3px 8px;
        top: -11px;
    }
}

/* ================================================================
   * FEATURE BOXES (Güven Özellikleri)
   * ============================================================== */

.pcs-fb-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.pcs-fb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pcs-fb-card {
    background: #ffffff;
    border: 1px solid #f0f0f5;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pcs-fb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pcs-fb-icon-wrap {
    width: 60px;
    height: 60px;
    background: #f8f6ff;
    /* Soft purple bg for icons */
    border-radius: 50%;
    /* Optionally make it hexagonal if needed, but circle is safe */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pcs-fb-icon-wrap svg {
    width: 30px;
    height: 30px;
}

/* Feature Titles */
.pcs-fb-title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

/* Feature Descriptions */
.pcs-fb-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Box (The cyan/gradient one) */
.pcs-fb-cta {
    background: linear-gradient(135deg, #74e5ff 0%, #44d0ff 100%);
    border: none;
    position: relative;
    overflow: hidden;
    justify-content: center;
    margin-top: 40px;
    /* Aligning visually with grid might require specific grid-row spanning, but standard flow works here */
    padding: 40px 25px;
}

.pcs-fb-cta:hover {
    transform: translateY(-5px);
}

.pcs-fb-cta-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: #ff6b35;
    /* Orange */
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 0 0 6px 6px;
    letter-spacing: 0.5px;
}

.pcs-fb-cta-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a4b60;
    /* Dark teal/blue */
    margin: 10px 0 25px 0;
    line-height: 1.3;
}

.pcs-fb-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #caff33;
    /* Lime green */
    color: #1a4b60;
    /* Dark text on green */
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pcs-fb-cta-btn:hover {
    background: #b5e82b;
    transform: scale(1.02);
    color: #1a4b60;
}

.pcs-fb-cta-btn svg {
    transition: transform 0.3s ease;
}

.pcs-fb-cta-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 991px) {
    .pcs-fb-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pcs-fb-cta {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .pcs-fb-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================================================
 * SILO CARDS (Silo Kartları)
 * ============================================================== */

.pcs-silo-wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.pcs-silo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 10px;
}

.pcs-silo-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #f0f0f5;
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    position: relative;
}

.pcs-silo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-color: #e5e5eb;
}

.pcs-silo-icon-wrap {
    width: 56px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pcs-silo-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pcs-silo-top {
    font-size: 11px;
    font-weight: 700;
    color: #f23a78;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    line-height: 1;
}

.pcs-silo-title {
    font-size: 18px;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.pcs-silo-sub {
    font-size: 13px;
    color: #7a7a7a;
    font-weight: 500;
}

.pcs-silo-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #8c92a4;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pcs-silo-card:hover .pcs-silo-arrow {
    background: #e8eaf0;
    color: #5c6274;
    transform: translateX(3px);
}

.pcs-silo-arrow svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .pcs-silo-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
 * PLATFORM SERVICES (Platform Servisleri)
 * ============================================================== */

.pcs-ps-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    max-width: 900px;
    margin: 40px auto;
    background: transparent;
}

/* TABS HEADER */
.pcs-ps-tabs-list {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: -15px;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.pcs-ps-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    background: #eef2f6;
    border: none;
    border-radius: 20px 20px 0 0;
    padding: 16px 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    color: #4b5563;
}

.pcs-ps-tab-btn.active {
    background: #ffffff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.03);
    z-index: 3;
    padding-bottom: 30px;
    margin-bottom: -15px;
}

.pcs-ps-tab-btn .pcs-ps-tab-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.pcs-ps-tab-btn.active .pcs-ps-tab-icon {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pcs-ps-tab-btn .pcs-ps-tab-icon svg {
    width: 20px;
    height: 20px;
}

.pcs-ps-tab-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pcs-ps-tab-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pcs-ps-tab-badge {
    background: #fb7185;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.pcs-ps-tab-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.pcs-ps-tab-rating svg {
    width: 14px;
    height: 14px;
}

.pcs-ps-tab-rval {
    font-weight: 700;
    color: #4b5563;
}

.pcs-ps-tab-rcnt {
    color: #9ca3af;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.pcs-ps-tab-btn.active .pcs-ps-tab-rcnt {
    background: #e5e7eb;
}

/* TABS CONTENT */
.pcs-ps-tabs-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.pcs-ps-tab-pane {
    display: none;
    animation: pcsFadeIn 0.3s ease;
}

.pcs-ps-tab-pane.active {
    display: block;
}

@keyframes pcsFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pcs-ps-tab-pane .pcs-ps-btn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.pcs-ps-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 24px;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
    letter-spacing: 0.5px;
}

.pcs-ps-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
    color: #ffffff;
}

/* BOTTOM BAR */
.pcs-ps-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-top: none;
    border-radius: 0 0 16px 16px;
    padding: 16px 30px;
    margin-top: -8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.pcs-ps-bb-stars {
    display: flex;
    gap: 2px;
}

.pcs-ps-bb-status {
    flex: 1;
    display: flex;
    justify-content: center;
}

.pcs-ps-bb-pill {
    background: #ecfdf5;
    color: #0d9488;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    gap: 12px;
}

.pcs-ps-bb-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pcsPulse 2s infinite;
}

@keyframes pcsPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pcs-ps-bb-del-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 1.4em;
    min-width: 160px;
    overflow: hidden;
}

.pcs-ps-bb-del-txt {
    position: absolute;
    left: 0;
    top: 100%;
    opacity: 0;
    color: #065f46;
    transition: all 0.5s ease;
    white-space: nowrap;
}

.pcs-ps-bb-del-txt.active {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.pcs-ps-bb-tick {
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.pcs-ps-bb-time {
    color: #047857;
}

.pcs-ps-bb-payment {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border: 1px solid #e5e7eb;
    padding: 6px 16px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pcs-ps-bb-payment svg {
    height: 20px;
    width: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .pcs-ps-tabs-list {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }

    .pcs-ps-tab-btn {
        border-radius: 12px;
        padding: 14px 16px;
        margin-bottom: 0 !important;
    }

    .pcs-ps-tab-btn.active {
        padding-bottom: 14px;
        border: 2px solid #e5e7eb;
    }

    .pcs-ps-tab-pane .pcs-ps-btn-grid {
        grid-template-columns: 1fr;
    }

    .pcs-ps-tabs-content {
        padding: 24px;
        border-radius: 12px;
    }

    .pcs-ps-bottom-bar {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        text-align: center;
    }

    .pcs-ps-bb-pill {
        padding: 10px 16px;
        font-size: 12px;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }
}

/* ================================================================
 * PLATFORM LINKS
 * ============================================================== */
.pcs-pl-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 20px 0;
}

.pcs-pl-main-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #1a1a24;
    margin-bottom: 40px;
}

.pcs-pl-highlight {
    color: #0ea5e9;
    /* Sky blue matching Juntire target */
}

.pcs-pl-grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 10px;
}

.pcs-pl-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #f0f0f5;
    border-radius: 12px;
    padding: 14px 20px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.pcs-pl-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #e5e5eb;
}

.pcs-pl-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 12px;
    flex-shrink: 0;
}

.pcs-pl-icon svg {
    width: 100%;
    height: 100%;
}

.pcs-pl-name {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
}

/* Responsive */
@media (max-width: 1024px) {
    .pcs-pl-grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .pcs-pl-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .pcs-pl-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pcs-pl-item {
        padding: 12px 14px;
    }

    .pcs-pl-name {
        font-size: 14px;
    }

    .pcs-pl-main-heading {
        font-size: 26px;
        margin-bottom: 24px;
    }
}