/* ==========================================================================
   OnayApp — Public Site Shared Stylesheet
   --------------------------------------------------------------------------
   Sitenin tamamı (ana sayfa, destek, hukuki sayfalar ve backend tarafından
   render edilen /service/* sayfaları) bu tek dosyayı kullanır. Ana sayfaya
   özgü parçalar (dünya haritası, canlı akış, istatistik barı) ayrı bir
   dosyada: assets/home.css

   TEMA: Koyu tema varsayılandır (markanın görünümü). Cihaz açık tema
   tercih ediyorsa `prefers-color-scheme: light` devreye girer. Elle geçiş
   düğmesi yoktur — tercih tamamen cihazdan okunur.
   ========================================================================== */

/* ============ TASARIM TOKEN'LARI — KOYU (VARSAYILAN) ============ */
:root {
    color-scheme: dark;

    --bg: #000;
    --text: #FFF;

    --keyColor: #00BF68;
    --keyHover: #00EE81;
    --keyGlow: rgba(0, 191, 104, 0.35);

    --subtle: rgba(255, 255, 255, 0.55);
    --faint: rgba(255, 255, 255, 0.3);
    --border: rgba(255, 255, 255, 0.08);
    --borderStrong: rgba(255, 255, 255, 0.15);

    --cardBg: rgba(255, 255, 255, 0.04);
    --cardHover: rgba(255, 255, 255, 0.07);
    --surfaceGlass: rgba(255, 255, 255, 0.02);
    --rowHover: rgba(255, 255, 255, 0.03);

    /* Başlıklardaki degrade metin dolgusu. */
    --heroGradient: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.72) 100%);

    /* Sabit header'ın altındaki solma katmanı. */
    --headerFade: linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.45) 40%, transparent);

    /* Arka plandaki yumuşak yeşil ışıklar. */
    --glowA: rgba(0, 191, 104, 0.08);
    --glowB: rgba(0, 191, 104, 0.05);

    --tooltipBg: rgba(10, 10, 20, 0.92);
    --tooltipBorder: rgba(255, 255, 255, 0.15);
}

/* ============ TASARIM TOKEN'LARI — AÇIK ============ */
/* Yeşil anahtar rengi açık zeminde koyulaştırılır: #00BF68 beyaz üzerinde
   ~2.6:1 kontrast verir ve metin için okunmaz; #00774A ~5.6:1 sağlar. */
@media (prefers-color-scheme: light) {
    :root {
        color-scheme: light;

        --bg: #FFFFFF;
        --text: #0B1210;

        --keyColor: #00774A;
        --keyHover: #005C39;
        --keyGlow: rgba(0, 119, 74, 0.22);

        --subtle: rgba(11, 18, 16, 0.62);
        --faint: rgba(11, 18, 16, 0.42);
        --border: rgba(11, 18, 16, 0.11);
        --borderStrong: rgba(11, 18, 16, 0.2);

        --cardBg: rgba(11, 18, 16, 0.028);
        --cardHover: rgba(11, 18, 16, 0.055);
        --surfaceGlass: rgba(11, 18, 16, 0.02);
        --rowHover: rgba(11, 18, 16, 0.03);

        --heroGradient: linear-gradient(135deg, #0B1210 0%, rgba(11, 18, 16, 0.7) 100%);

        --headerFade: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.62) 40%, transparent);

        --glowA: rgba(0, 191, 104, 0.11);
        --glowB: rgba(0, 191, 104, 0.07);

        --tooltipBg: rgba(255, 255, 255, 0.96);
        --tooltipBorder: rgba(11, 18, 16, 0.14);
    }
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; }

/* Klavye kullanıcıları için görünür odak halkası. */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--keyHover);
    outline-offset: 3px;
    border-radius: 4px;
}

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 1100;
    padding: 12px 20px;
    background: var(--keyColor);
    color: #fff;
    font-weight: 600;
    border-radius: 0 0 10px 10px;
    transition: top 0.2s;
}

.skip-link:focus { top: 0; }

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0 80px;
    background: var(--headerFade);
    pointer-events: none;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: all;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    transition: color 0.3s;
}

.logo:hover { color: var(--keyColor); }

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-links { display: flex; gap: 24px; list-style: none; }

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--keyHover); }

/* ============ ARKA PLAN IŞIKLARI ============ */
.bg-glow {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.bg-glow::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glowA) 0%, transparent 70%);
    animation: glowFloat 25s ease-in-out infinite;
}

.bg-glow::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--glowB) 0%, transparent 70%);
    animation: glowFloat 30s ease-in-out infinite reverse;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(80px, -60px); }
    66% { transform: translate(-40px, 40px); }
}

/* ============ GİRİŞ ANİMASYONU ============ */
/* Bloklar yalnızca JavaScript çalışıyorsa gizlenir (`<html class="js">`).
   JS kapalıysa ya da hata verirse içerik olduğu gibi görünür — aksi hâlde
   `opacity: 0` kalıcı olur ve sayfa boş görünürdü. */
.anim-section,
.anim-el {
    opacity: 1;
    transform: none;
}

.js .anim-section,
.js .anim-el {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .anim-section.is-visible,
.js .anim-el.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ BÖLÜM İSKELETİ ============ */
.section-block {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-block--tight { padding: 64px 40px; }

.section-heading {
    text-align: center;
    margin-bottom: 64px;
}

.section-heading h2,
.content-title {
    font-size: clamp(44px, 6vw, 88px);
    font-weight: 800;
    line-height: 0.88;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.section-heading .caption {
    font-size: 1rem;
    color: var(--subtle);
    font-weight: 500;
}

.content-title { margin: 80px 0 32px; }

/* Gövde metniyle birlikte kullanılan daha küçük başlık. */
.section-title {
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

/* ============ SAYFA BAŞLIĞI (HERO) ============ */
.page-hero {
    padding: 160px 40px 64px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero-inner { max-width: 820px; }

/* İçerik sayfalarında (destek / hukuki) hero, gövde metniyle aynı kapsayıcı
   genişliğini kullanır; aksi hâlde geniş ekranda başlık ile paragraflar
   birbirine göre kayar. */
.page-hero--narrow { max-width: 900px; }

.page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--keyColor);
    margin-bottom: 24px;
}

.page-hero h1 {
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    background: var(--heroGradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero .lede,
.page-hero .subtitle {
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.7;
    color: var(--subtle);
    max-width: 680px;
}

.page-hero .last-updated {
    font-size: 0.95rem;
    color: var(--faint);
    font-weight: 500;
}

/* Hero içindeki tarih/durum hapı (örn. "Effective: January 1, 2025"). */
.page-hero .badge {
    display: inline-block;
    padding: 7px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--cardBg);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--subtle);
}

.service-mark {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--cardBg);
    object-fit: contain;
    padding: 10px;
    margin-bottom: 24px;
    display: block;
}

/* ============ BREADCRUMB ============ */
/* Header `position: fixed` olduğu için breadcrumb kendi üst boşluğuyla onun
   altından çıkmak zorunda; aksi hâlde logonun arkasında kalır. */
.breadcrumb {
    padding: 124px 40px 0;
    max-width: 1200px;
    margin: 0 auto 8px;
}

/* Breadcrumb varsa header boşluğunu o karşıladı, hero tekrar boşluk bırakmaz.
   Breadcrumb'ı olmayan sayfalarda (404) hero kendi üst boşluğunu korur. */
.breadcrumb + main .page-hero { padding-top: 24px; }

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    font-size: 0.85rem;
    color: var(--subtle);
}

.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: '/'; opacity: 0.4; }
.breadcrumb a { transition: color 0.3s; }
.breadcrumb a:hover { color: var(--keyHover); }
.breadcrumb [aria-current='page'] { color: var(--text); opacity: 0.85; }

/* ============ İÇERİK SAYFALARI (destek / hukuki) ============ */
.content-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 40px 96px;
}

/* Bölümlerden önce gelen giriş paragrafı. */
.content-main .intro {
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.8;
    color: var(--subtle);
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.content-main .section { margin-bottom: 56px; }

.content-main .section h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.content-main .section p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--subtle);
    margin-bottom: 16px;
}

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

.content-main .section ul {
    margin: 0 0 16px;
    padding-left: 22px;
}

.content-main .section li {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--subtle);
    margin-bottom: 10px;
}

.content-main .section a {
    color: var(--keyColor);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.content-main .section a:hover { color: var(--keyHover); }

/* ============ PROSE ============ */
.prose {
    max-width: 760px;
    font-size: clamp(16px, 1.15vw, 17.5px);
    line-height: 1.8;
    color: var(--subtle);
}

.prose p { margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 600; }

.prose a {
    color: var(--keyColor);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.prose a:hover { color: var(--keyHover); }

/* ============ KART IZGARASI ============ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card-grid--three { grid-template-columns: repeat(3, 1fr); }

.info-card,
.contact-card {
    background: var(--cardBg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px 28px;
    transition: background 0.4s, border-color 0.4s;
}

.info-card:hover,
.contact-card:hover {
    background: var(--cardHover);
    border-color: var(--borderStrong);
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--subtle);
}

/* ============ DESTEK SAYFASI ============ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--subtle);
    margin-bottom: 16px;
}

.email-link {
    display: inline-block;
    font-weight: 600;
    color: var(--keyColor);
    transition: color 0.3s;
}

.email-link:hover { color: var(--keyHover); }

.methods-list { list-style: none; }

.methods-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.methods-list li:last-child { border-bottom: none; }

.method-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1.3;
}

.method-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.method-info p {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--subtle);
}

.method-info a {
    color: var(--keyColor);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.method-info a:hover { color: var(--keyHover); }

.response-box {
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surfaceGlass);
    backdrop-filter: blur(12px);
    padding: 8px 26px;
}

.response-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.response-item:last-child { border-bottom: none; }

.response-item .label {
    font-size: 0.97rem;
    color: var(--subtle);
}

.response-item .time {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--keyColor);
    white-space: nowrap;
}

/* ============ ADIMLAR ============ */
.steps-container { max-width: 760px; }

.step-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

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

.step-number {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--keyColor);
    flex-shrink: 0;
    min-width: 72px;
    opacity: 0.7;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--subtle);
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 34px;
    top: 68px;
    bottom: -26px;
    width: 2px;
    background: linear-gradient(to bottom, var(--keyColor), transparent);
    opacity: 0.2;
}

/* ============ FİYAT TABLOSU ============ */
.table-wrap {
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surfaceGlass);
    backdrop-filter: blur(12px);
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 480px;
}

.price-table caption {
    text-align: left;
    padding: 22px 26px 0;
    font-size: 0.85rem;
    color: var(--subtle);
}

.price-table th,
.price-table td {
    padding: 15px 26px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.price-table thead th {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--subtle);
    white-space: nowrap;
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td { border-bottom: none; }

.price-table tbody tr { transition: background 0.3s; }
.price-table tbody tr:hover { background: var(--rowHover); }

.price-table tbody th {
    font-weight: 600;
    color: var(--text);
}

.country-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.country-cell img {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}

.coin-value {
    font-weight: 700;
    color: var(--keyColor);
    white-space: nowrap;
}

.muted { color: var(--faint); }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--cardBg);
    margin-bottom: 14px;
    overflow: hidden;
    transition: background 0.3s, border-color 0.3s;
}

.faq-item:hover { border-color: var(--borderStrong); }
.faq-item[open] { background: var(--cardHover); }

.faq-item summary {
    cursor: pointer;
    padding: 22px 26px;
    font-size: 1.02rem;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--keyColor);
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
    padding: 0 26px 24px;
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--subtle);
}

/* ============ SERVİS DİZİNİ (hub) ============ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.service-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--cardBg);
    font-weight: 600;
    font-size: 0.97rem;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.service-tile:hover {
    background: var(--cardHover);
    border-color: var(--keyColor);
    transform: translateY(-2px);
}

.service-tile img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.service-tile .tile-fallback {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--keyGlow);
    color: var(--keyColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.service-tile .tile-meta {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--subtle);
    margin-top: 2px;
}

/* ============ İLGİLİ BAĞLANTILAR ============ */
.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-links a {
    padding: 9px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--subtle);
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.related-links a:hover {
    color: var(--text);
    border-color: var(--keyColor);
    background: var(--cardHover);
}

/* ============ CTA ============ */
/* CTA bloğu iki temada da koyu kalır: markanın vurgu alanı ve açık temada da
   sayfadan ayrışması istenir. Bu yüzden içindeki renkler token'a bağlı değil. */
.cta-section {
    margin: 0 40px 100px;
    background: linear-gradient(135deg, #0D004D 0%, #001A40 50%, #002B33 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    max-width: 1120px;
}

@media (min-width: 1200px) {
    .cta-section { margin-left: auto; margin-right: auto; }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 191, 104, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(0, 191, 104, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-inner {
    padding: 72px 48px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h2,
.cta-section .cta-label { color: #fff; }

.cta-inner h2 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.62);
    max-width: 560px;
    margin: 0 auto 32px;
}

.cta-btn {
    display: inline-block;
    background: var(--keyColor);
    color: #fff;
    padding: 13px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.98rem;
    transition: background 0.3s;
}

.cta-btn:hover { background: var(--keyHover); }

/* CTA içindeki buton koyu zeminde durduğu için parlak yeşil kalır. */
.cta-section .cta-btn { background: #00BF68; }
.cta-section .cta-btn:hover { background: #00EE81; }

/* ============ MAĞAZA BUTONLARI ============ */
.store-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--cardBg);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.store-btn:hover {
    background: var(--cardHover);
    border-color: var(--borderStrong);
    transform: translateY(-2px);
}

.store-btn svg { flex-shrink: 0; }

.store-btn span {
    font-size: 0.7rem;
    font-weight: 400;
    display: block;
    opacity: 0.7;
}

/* CTA her iki temada koyu olduğu için içindeki butonlar açık kalır. */
.cta-section .store-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.16);
}

.cta-section .store-btn:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.28);
}

/* Footer içindeki daha küçük varyant. */
.store-buttons--compact { margin-top: 0; }

.store-buttons--compact .store-btn {
    padding: 9px 18px;
    font-size: 0.85rem;
    border-radius: 11px;
}

.store-buttons--compact .store-btn span { font-size: 0.62rem; }

/* ============ NOT KUTUSU ============ */
.notice {
    max-width: 820px;
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--keyColor);
    border-radius: 0 16px 16px 0;
    background: var(--cardBg);
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--subtle);
}

/* ============ FOOTER ============ */
.footer {
    padding: 40px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav {
    display: flex;
    gap: 24px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.9rem;
    color: var(--subtle);
    transition: color 0.3s;
}

.footer-nav a:hover { color: var(--keyHover); }

.footer-copy {
    font-size: 0.8rem;
    color: var(--faint);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
    .header-inner { padding: 0 24px; }
    .page-hero { padding: 130px 24px 48px; }
    .breadcrumb { padding: 108px 24px 0; }
    .section-block { padding: 72px 24px; }
    .section-block--tight { padding: 48px 24px; }
    .section-heading { margin-bottom: 48px; }
    .content-title { margin: 56px 0 24px; }
    .content-main { padding: 16px 24px 72px; }
    .card-grid,
    .card-grid--three,
    .contact-grid { grid-template-columns: 1fr; }
    .cta-section { margin: 0 24px 72px; }
    .cta-inner { padding: 56px 32px; }
    .footer { padding: 32px 24px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .step-item:not(:last-child)::after { left: 28px; }
}

@media (max-width: 480px) {
    .header { padding: 16px 0 60px; }
    .header-inner { flex-direction: column; gap: 12px; padding: 0 16px; }
    .nav-links { gap: 16px; }
    .logo { font-size: 1.25rem; }
    .logo-mark { width: 28px; height: 28px; }
    .page-hero { padding: 150px 16px 40px; }
    /* Mobilde header iki satıra düşüyor, breadcrumb daha fazla boşluk ister. */
    .breadcrumb { padding: 136px 16px 0; }
    .section-block { padding: 56px 16px; }
    .section-block--tight { padding: 40px 16px; }
    .section-heading h2,
    .content-title { font-size: 40px; }
    .content-main { padding: 12px 16px 56px; }
    .price-table th,
    .price-table td { padding: 13px 18px; }
    .price-table caption { padding: 18px 18px 0; }
    .faq-item summary { padding: 18px 20px; font-size: 0.97rem; }
    .faq-answer { padding: 0 20px 20px; }
    .step-item { gap: 18px; }
    .step-number { font-size: 36px; min-width: 46px; }
    .step-item:not(:last-child)::after { left: 22px; }
    .cta-section { margin: 0 16px 56px; border-radius: 24px; }
    .cta-inner { padding: 44px 22px; }
    .info-card,
    .contact-card { padding: 26px 22px; }
    .service-grid { grid-template-columns: 1fr; }
    .store-buttons { flex-direction: column; align-items: stretch; }
    .store-btn { justify-content: center; }
    .response-box { padding: 4px 20px; }
    .response-item { flex-direction: column; align-items: flex-start; gap: 4px; }
    .methods-list li { gap: 14px; }
}

/* Hareket azaltma tercihi olan kullanıcılarda animasyonları kapat. */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    /* Animasyonla görünür hale gelen bloklar en baştan görünür olsun. */
    .anim-section,
    .anim-el,
    .js .anim-section,
    .js .anim-el { opacity: 1; transform: none; }
}
