/* =========================================
   İŞ TAP AI — SHARED STYLESHEET
   Qaf Studio © 2026
   Font: Syne (display) + DM Sans (body)
   ========================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
    --primary:   #FF8C00;
    --secondary: #FFA500;
    --accent:    #FFD700;
    --dark:      #080c1e;
    --darker:    #040610;
    --light:     #ffffff;
    --gray:      #8892b0;
    --card-bg:   rgba(10, 15, 35, 0.75);
    --glow:      rgba(255, 140, 0, 0.35);
}

/* ── Import fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--darker);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
    cursor: none;
}

/* ── Background gradient orbs ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 15% 40%, rgba(255,140,0,0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(255,165,0,0.10) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(255,215,0,0.07) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: bgPulse 20s ease-in-out infinite;
}
@keyframes bgPulse {
    0%,100% { opacity:1; }
    50% { opacity:0.75; }
}

/* ── Noise grain ── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
}

/* ── Custom Cursor ── */
.cursor-dot, .cursor-ring {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}
.cursor-dot {
    width: 8px; height: 8px;
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary), 0 0 30px var(--glow);
    top: 0; left: 0;
    transition: transform 0.06s linear;
}
.cursor-ring {
    width: 40px; height: 40px;
    border: 1.5px solid rgba(255,140,0,0.45);
    top: 0; left: 0;
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}
.cursor-ring.hovered {
    width: 58px; height: 58px;
    border-color: var(--primary);
}

/* ── Container ── */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* ══════════════════════════
   SUB-PAGE HEADER
══════════════════════════ */
.header {
    padding: 56px 0 28px;
    text-align: center;
    position: relative;
}
.header h1 {
    font-family: 'Syne', sans-serif;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(100deg, #fff 0%, var(--accent) 80%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    animation: fadeSlideDown 0.5s ease both;
}
.header p {
    font-size: 16px;
    color: var(--gray);
    animation: fadeSlideUp 0.5s ease both 0.15s;
}
@keyframes fadeSlideDown {
    from { opacity:0; transform:translateY(-16px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeSlideUp {
    from { opacity:0; transform:translateY(16px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ══════════════════════════
   NAV TABS
══════════════════════════ */
.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}
.tab-btn {
    background: var(--card-bg);
    border: 1px solid rgba(255,140,0,0.15);
    backdrop-filter: blur(16px);
    padding: 11px 26px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s;
    cursor: none;
}
.tab-btn:hover {
    color: var(--primary);
    border-color: rgba(255,140,0,0.4);
    transform: translateY(-2px);
}
.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    border: none;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(255,140,0,0.3);
}

/* ══════════════════════════
   MAIN CONTENT CARD
══════════════════════════ */
main {
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,140,0,0.1);
    border-radius: 24px;
    box-shadow: 0 16px 64px rgba(0,0,0,0.6);
    margin: 0 24px 60px;
    padding: 52px;
    animation: fadeIn 0.6s ease both;
    position: relative;
    z-index: 10;
    max-width: 952px;
    margin-left: auto;
    margin-right: auto;
}
@keyframes fadeIn {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ── Typography ── */
h2 {
    font-family: 'Syne', sans-serif;
    color: var(--light);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
    border-bottom: 1px solid rgba(255,140,0,0.15);
    padding-bottom: 16px;
    margin-bottom: 24px;
    margin-top: 0;
    position: relative;
}
h2::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 56px; height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}
h3 {
    font-family: 'Syne', sans-serif;
    color: var(--light);
    font-size: 19px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 12px;
}
p  { color: var(--gray); line-height: 1.75; margin-bottom: 4px; }
ul { padding-left: 22px; color: var(--gray); }
li { margin-bottom: 10px; line-height: 1.65; }
strong { color: var(--light); }

a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s;
    cursor: none;
}
a:hover { color: var(--accent); }

.last-updated {
    display: inline-block;
    font-size: 12px;
    color: var(--gray);
    font-style: italic;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 28px;
}

/* tab-content toggle */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Support Card ── */
.support-card {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,140,0,0.12);
    border-radius: 16px;
    padding: 28px;
    margin: 24px 0;
}
.support-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--gray);
    font-size: 15px;
}
.support-item:last-child { border-bottom: none; }
.support-item strong { min-width: 160px; color: var(--light); font-weight: 600; }

/* ══════════════════════════
   FOOTER
══════════════════════════ */
footer {
    border-top: 1px solid rgba(255,140,0,0.08);
    padding: 36px 24px;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    position: relative;
    z-index: 10;
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 768px) {
    main { padding: 28px 20px; margin: 0 12px 40px; }
    .tabs { padding: 12px 16px 20px; }
    .tab-btn { width: 100%; text-align: center; }
    .support-item { flex-direction: column; align-items: flex-start; gap: 4px; }
    .support-item strong { min-width: auto; }
}