/* Sıfır Komisyon kalıcı hedef sayfası
   Pay Piyasası sayfasıyla aynı lacivert/turuncu paleti kullanır. */

.sk-page {
    --sk-navy: #091A4B;
    --sk-navy-mid: #132f5c;
    --sk-orange: #f97316;
    --sk-orange-hover: #ea580c;
    --sk-border: #e2e8f0;
    --sk-muted: #475569;
    --sk-bg-soft: #f8fafc;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 20px 72px;
    color: #0f172a;
}

.sk-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Breadcrumb */
.sk-breadcrumb {
    font-size: 14px;
    color: var(--sk-muted);
    margin-bottom: 20px;
}

.sk-breadcrumb a {
    color: var(--sk-muted);
    text-decoration: none;
}

.sk-breadcrumb a:hover {
    color: var(--sk-orange);
    text-decoration: underline;
}

.sk-breadcrumb span {
    margin: 0 6px;
}

/* Hero */
.sk-hero {
    background: linear-gradient(135deg, #243B6B 0%, #162B52 100%);
    color: #fff;
    border-radius: 20px;
    padding: 48px 36px;
}

.sk-hero-inner {
    max-width: 860px;
}

.sk-eyebrow {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 600;
    color: #fdba74;
    margin: 0 0 12px;
}

.sk-title {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 18px;
    color: #fff;
}

.sk-answer {
    font-size: 17px;
    line-height: 1.7;
    color: #e2e8f0;
    margin: 0 0 28px;
}

.sk-facts {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0 0 28px;
}

.sk-facts li {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    padding: 14px 16px;
}

.sk-facts strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.sk-facts span {
    display: block;
    font-size: 13px;
    color: #cbd5e1;
    margin-top: 4px;
}

.sk-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.sk-cta {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background-color .2s, color .2s;
}

.sk-cta-primary {
    background: var(--sk-orange);
    color: #fff;
}

.sk-cta-primary:hover {
    background: var(--sk-orange-hover);
    color: #fff;
}

.sk-cta-secondary {
    border: 1px solid rgba(255, 255, 255, .45);
    color: #fff;
}

.sk-cta-secondary:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.sk-dates {
    font-size: 13px;
    color: #cbd5e1;
    margin: 0;
}

/* Bölümler */
.sk-section {
    margin-top: 56px;
    scroll-margin-top: 100px;
}

.sk-h2 {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 700;
    color: var(--sk-navy);
    margin: 0 0 12px;
}

.sk-lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--sk-muted);
    margin: 0 0 20px;
    max-width: 78ch;
}

.sk-note {
    font-size: 14px;
    line-height: 1.7;
    color: var(--sk-muted);
    margin: 16px 0 0;
    max-width: 82ch;
}

.sk-note a,
.sk-links a,
.sk-dl a {
    color: var(--sk-navy-mid);
}

/* Koşullar tablosu */
.sk-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--sk-border);
    border-radius: 16px;
}

.sk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 560px;
}

.sk-table thead th {
    background: var(--sk-navy);
    color: #fff;
    text-align: left;
    font-weight: 600;
    padding: 14px 20px;
}

.sk-table tbody th,
.sk-table tbody td {
    padding: 14px 20px;
    border-top: 1px solid var(--sk-border);
    vertical-align: top;
    line-height: 1.6;
}

.sk-table tbody th {
    text-align: left;
    font-weight: 600;
    color: var(--sk-navy);
    width: 34%;
}

.sk-table tbody tr:nth-child(even) {
    background: var(--sk-bg-soft);
}

/* Kapsam ayrımı */
.sk-scope {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.sk-scope-card {
    border: 1px solid var(--sk-border);
    border-radius: 16px;
    padding: 24px;
    background: #fff;
}

.sk-scope-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 14px;
}

.sk-scope-card ul {
    margin: 0;
    padding-left: 20px;
}

.sk-scope-card li {
    line-height: 1.7;
    margin-bottom: 8px;
    color: #1e293b;
}

.sk-scope-in {
    border-left: 4px solid #16a34a;
}

.sk-scope-in h3 {
    color: #15803d;
}

.sk-scope-out {
    border-left: 4px solid #dc2626;
}

.sk-scope-out h3 {
    color: #b91c1c;
}

/* Devam eden masraflar */
.sk-cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

.sk-cost {
    border: 1px solid var(--sk-border);
    border-radius: 14px;
    padding: 20px;
    background: var(--sk-bg-soft);
}

.sk-cost h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--sk-navy);
    margin: 0 0 8px;
}

.sk-cost p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--sk-muted);
}

/* Kanallar */
.sk-channels {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.sk-channels li {
    border: 1px solid var(--sk-border);
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    color: var(--sk-navy);
}

/* SSS */
.sk-faq {
    border: 1px solid var(--sk-border);
    border-radius: 16px;
    overflow: hidden;
}

.sk-faq-item + .sk-faq-item {
    border-top: 1px solid var(--sk-border);
}

.sk-faq-q {
    cursor: pointer;
    padding: 18px 22px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sk-faq-q::-webkit-details-marker {
    display: none;
}

.sk-faq-q h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sk-navy);
    margin: 0;
}

.sk-faq-q::after {
    content: "+";
    font-size: 22px;
    line-height: 1;
    color: var(--sk-orange);
    flex-shrink: 0;
}

.sk-faq-item[open] .sk-faq-q::after {
    content: "\2212";
}

.sk-faq-item[open] .sk-faq-q {
    background: var(--sk-bg-soft);
}

.sk-faq-a {
    padding: 0 22px 20px;
}

.sk-faq-a p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #1e293b;
    max-width: 88ch;
}

/* Kurumsal doğrulama */
.sk-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.sk-trust-block {
    border: 1px solid var(--sk-border);
    border-radius: 16px;
    padding: 24px;
    background: #fff;
}

.sk-trust-block h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--sk-navy);
    margin: 0 0 16px;
}

.sk-dl {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.sk-dl dt {
    font-weight: 600;
    color: var(--sk-navy);
    margin-top: 12px;
}

.sk-dl dt:first-child {
    margin-top: 0;
}

.sk-dl dd {
    margin: 2px 0 0;
    color: var(--sk-muted);
}

.sk-links {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
}

.sk-links li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.sk-owner {
    font-size: 14px;
    line-height: 1.7;
    color: var(--sk-muted);
    margin: 20px 0 0;
}

/* Değişiklik geçmişi */
.sk-changelog {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 2px solid var(--sk-border);
}

.sk-changelog li {
    padding: 0 0 22px 22px;
    position: relative;
}

.sk-changelog li::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sk-orange);
}

.sk-changelog time {
    font-weight: 600;
    color: var(--sk-navy);
    font-size: 14px;
}

.sk-version {
    display: inline-block;
    margin-left: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--sk-muted);
    background: var(--sk-bg-soft);
    border: 1px solid var(--sk-border);
    border-radius: 999px;
    padding: 2px 10px;
}

.sk-changelog p {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--sk-muted);
    max-width: 82ch;
}

/* Yasal uyarı */
.sk-disclaimer {
    background: var(--sk-bg-soft);
    border: 1px solid var(--sk-border);
    border-radius: 16px;
    padding: 28px;
}

.sk-disclaimer p {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--sk-muted);
    margin: 0 0 12px;
    max-width: 90ch;
}

.sk-disclaimer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .sk-hero {
        padding: 32px 22px;
    }

    .sk-section {
        margin-top: 44px;
    }
}
