.ps-page {
    --ps-dark: #12151c;
    --ps-dark-2: #1a1f2b;
    --ps-accent: rgb(var(--primary_color));
    --ps-accent-hex: #00c753;
    --ps-text: #ffffff;
    --ps-muted: #9aa3b2;
    overflow-x: hidden;
}

/* Hero */
.ps-hero {
    background: var(--ps-dark);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.ps-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(var(--primary_color), 0.15);
    transform: rotate(30deg);
    border-radius: 20px;
}

.ps-hero::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: -60px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(var(--primary_color), 0.1);
    transform: rotate(-15deg);
    border-radius: 16px;
}

.ps-hero-inner {
    position: relative;
    z-index: 1;
}

.ps-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ps-accent-hex);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.ps-hero-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--ps-text);
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
}

.ps-hero-title span {
    color: var(--ps-accent-hex);
}

.ps-hero-text {
    color: var(--ps-muted);
    font-size: 16px;
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.ps-hero-card {
    background: var(--ps-dark-2);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.ps-hero-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--primary_color), 0.4);
}

.ps-hero-card.featured {
    background: linear-gradient(145deg, #1e2433, #252d3f);
    border-color: rgba(var(--primary_color), 0.3);
    grid-row: span 1;
}

.ps-hero-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(var(--primary_color), 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ps-accent-hex);
    font-size: 20px;
    margin-bottom: 16px;
}

.ps-hero-card h3 {
    color: var(--ps-text);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ps-hero-card p {
    color: var(--ps-muted);
    font-size: 14px;
    flex-grow: 1;
    margin-bottom: 16px;
}

.ps-hero-card a {
    color: var(--ps-accent-hex);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ps-hero-card a:hover {
    text-decoration: underline;
}

/* Steps */
.ps-steps {
    background: #f7f8fa;
    padding: 80px 0;
    position: relative;
}

.ps-steps-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}

.ps-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.ps-section-label::before {
    content: '';
    width: 4px;
    height: 32px;
    background: rgb(var(--secondary_color));
    border-radius: 2px;
}

.ps-section-label span {
    font-size: 13px;
    color: var(--ps-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ps-steps-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: rgb(var(--text_color));
    margin: 0;
}

.ps-steps-title strong {
    color: var(--ps-accent-hex);
}

.ps-avatars {
    display: flex;
}

.ps-avatars span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(var(--primary_color)), rgb(var(--secondary_color)));
    border: 2px solid #fff;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.ps-avatars span:first-child {
    margin-left: 0;
}

.ps-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ps-step-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e8ecf0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ps-step-card:first-child {
    background: rgb(var(--secondary_color));
    border-color: transparent;
}

.ps-step-card:first-child .ps-step-icon,
.ps-step-card:first-child h3,
.ps-step-card:first-child p,
.ps-step-card:first-child a {
    color: #fff;
}

.ps-step-card:first-child .ps-step-icon {
    background: rgba(255, 255, 255, 0.15);
}

.ps-step-card:first-child p {
    opacity: 0.85;
}

.ps-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.ps-step-icon {
    width: 48px;
    height: 48px;
    background: #f0f2f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgb(var(--secondary_color));
    margin-bottom: 16px;
}

.ps-step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: rgb(var(--text_color));
    margin-bottom: 10px;
}

.ps-step-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

.ps-step-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--ps-accent-hex);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* Pricing */
.ps-pricing {
    background: var(--ps-dark);
    padding: 100px 0 80px;
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    margin-top: -40px;
}

.ps-pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.ps-pricing-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--ps-accent-hex);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ps-pricing-header p {
    color: var(--ps-muted);
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.ps-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.ps-price-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.ps-price-card.featured {
    background: var(--ps-dark-2);
    border: 1px solid rgba(var(--primary_color), 0.3);
    transform: scale(1.03);
    position: relative;
}

.ps-price-card.featured::before {
    content: 'En Çok Tercih Edilen';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ps-accent-hex);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.ps-price-card h3 {
    font-size: 22px;
    font-weight: 800;
    font-style: italic;
    color: rgb(var(--text_color));
    margin-bottom: 4px;
}

.ps-price-card.featured h3 {
    color: var(--ps-accent-hex);
}

.ps-price-subtitle {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.ps-price-card.featured .ps-price-subtitle {
    color: var(--ps-muted);
    border-color: rgba(255, 255, 255, 0.1);
}

.ps-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.ps-price-features li {
    font-size: 14px;
    color: #4b5563;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.ps-price-card.featured .ps-price-features li {
    color: #d1d5db;
}

.ps-price-features li i {
    color: #9ca3af;
    margin-top: 3px;
    font-size: 12px;
}

.ps-price-card.featured .ps-price-features li i {
    color: var(--ps-accent-hex);
}

.ps-price-old {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 14px;
}

.ps-price-new {
    font-size: 28px;
    font-weight: 800;
    color: rgb(var(--text_color));
    margin: 4px 0 20px;
}

.ps-price-card.featured .ps-price-new {
    color: var(--ps-accent-hex);
}

.ps-price-btn {
    display: block;
    text-align: center;
    background: var(--ps-accent-hex);
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}

.ps-price-btn:hover {
    opacity: 0.9;
    color: #fff;
}

.ps-price-card.featured .ps-price-btn {
    background: var(--ps-accent-hex);
}

/* Plugins / Eklentiler */
.ps-plugins {
    background: #f7f8fa;
    padding: 80px 0;
    position: relative;
}

.ps-plugins-header {
    text-align: center;
    margin-bottom: 48px;
}

.ps-plugins-header .ps-label {
    color: var(--ps-accent-hex);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.ps-plugins-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: rgb(var(--text_color));
    margin-bottom: 12px;
}

.ps-plugins-header p {
    color: #6b7280;
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.ps-plugins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ps-plugin-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e8ecf0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    height: 100%;
}

.ps-plugin-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--primary_color), 0.35);
}

.ps-plugin-icon {
    width: 52px;
    height: 52px;
    background: rgba(var(--primary_color), 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ps-accent-hex);
    font-size: 22px;
    margin-bottom: 18px;
}

.ps-plugin-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: rgb(var(--text_color));
    margin-bottom: 10px;
}

.ps-plugin-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 16px;
}

.ps-plugin-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--ps-accent-hex);
    margin-bottom: 12px;
}

.ps-plugin-link {
    font-size: 14px;
    font-weight: 600;
    color: rgb(var(--secondary_color));
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ps-plugin-card:hover .ps-plugin-link {
    color: var(--ps-accent-hex);
}

/* Platforms */
.ps-platforms {
    background: var(--ps-dark);
    padding: 80px 0;
}

.ps-platforms-header {
    text-align: center;
    margin-bottom: 48px;
}

.ps-platforms-header .ps-label {
    color: var(--ps-accent-hex);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.ps-platforms-header h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--ps-text);
    margin-bottom: 12px;
}

.ps-platforms-header p {
    color: var(--ps-muted);
    font-size: 15px;
}

.ps-platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ps-platform-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.ps-platform-item:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: #fff;
}

.ps-platform-item i {
    font-size: 22px;
}

.ps-platform-item.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.ps-platform-item.twitter { background: #1da1f2; }
.ps-platform-item.youtube { background: #ff0000; }
.ps-platform-item.facebook { background: #1877f2; }
.ps-platform-item.tiktok { background: #010101; border: 1px solid #333; }
.ps-platform-item.spotify { background: #1db954; }
.ps-platform-item.telegram { background: #0088cc; }
.ps-platform-item.twitch { background: #9146ff; }

.ps-platforms-cta {
    text-align: center;
    margin-top: 40px;
}

.ps-platforms-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--ps-accent-hex);
    color: var(--ps-accent-hex);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.ps-platforms-cta a:hover {
    background: var(--ps-accent-hex);
    color: #fff;
}

/* Reviews & FAQ */
.ps-reviews-faq {
    background: #f7f8fa;
    padding: 80px 0;
}

.ps-reviews-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.ps-block-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.ps-block-title::before {
    content: '';
    width: 4px;
    height: 32px;
    background: rgb(var(--secondary_color));
    border-radius: 2px;
}

.ps-block-title h2 {
    font-size: 22px;
    font-weight: 800;
    color: rgb(var(--text_color));
    margin: 0;
}

.ps-review-card {
    background: rgb(var(--secondary_color));
    border-radius: 16px;
    padding: 32px;
    color: #fff;
    position: relative;
    min-height: 200px;
}

.ps-review-card p {
    font-style: italic;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.9;
}

.ps-review-author {
    text-align: right;
}

.ps-review-author strong {
    display: block;
    font-size: 16px;
}

.ps-review-author span {
    color: var(--ps-accent-hex);
    font-size: 13px;
}

.ps-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ps-faq-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8ecf0;
    overflow: hidden;
}

.ps-faq-item.active {
    background: rgb(var(--secondary_color));
    border-color: transparent;
}

.ps-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: rgb(var(--text_color));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ps-faq-item.active .ps-faq-question {
    color: #fff;
}

.ps-faq-answer {
    display: none;
    padding: 0 20px 16px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.ps-faq-item.active .ps-faq-answer {
    display: block;
    color: rgba(255, 255, 255, 0.85);
}

/* Stats */
.ps-stats {
    background: var(--ps-dark);
    padding: 48px 0;
}

.ps-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ps-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ps-stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(var(--primary_color), 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ps-accent-hex);
    font-size: 20px;
    flex-shrink: 0;
}

.ps-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--ps-text);
    line-height: 1;
}

.ps-stat-label {
    font-size: 13px;
    color: var(--ps-muted);
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 1199px) {
    .ps-hero-cards {
        grid-template-columns: 1fr;
    }

    .ps-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-plugins-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .ps-price-card.featured {
        transform: none;
    }

    .ps-platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-reviews-faq-grid {
        grid-template-columns: 1fr;
    }

    .ps-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .ps-steps-grid,
    .ps-plugins-grid,
    .ps-platform-grid,
    .ps-stats-grid {
        grid-template-columns: 1fr;
    }

    .ps-pricing {
        clip-path: none;
        margin-top: 0;
    }
}
