/* =====================================================================
   WxTimer — Tasarım Sistemi
   Yön: Mühendislik + editöryel lüks. Mürekkep siyahı zemin,
   elektrik limon vurgu, Bricolage Grotesque + Hanken Grotesk.
   ===================================================================== */

/* ---------- Tasarım jetonları ---------- */
:root {
    /* Renk */
    --ink:        #0B0C0E;
    --ink-1:      #101216;
    --ink-2:      #15181E;
    --ink-3:      #1C2027;
    --line:       rgba(244, 243, 238, 0.09);
    --line-2:     rgba(244, 243, 238, 0.16);
    --paper:      #F4F3EE;
    --paper-dim:  #C5C7C2;
    --muted:      #8B8F96;
    --muted-2:    #6A6E75;
    --accent:     #C8F751;   /* elektrik limon */
    --accent-700: #A6D62F;
    --accent-ink: #0B0C0E;   /* vurgu üstü metin */
    --danger:     #FF6B5E;

    /* Tipografi */
    --font-display: "Bricolage Grotesque", Georgia, serif;
    --font-body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
    --font-mono:    "JetBrains Mono", ui-monospace, monospace;

    /* Ölçek (akışkan) */
    --step--1: clamp(0.83rem, 0.78rem + 0.2vw, 0.92rem);
    --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
    --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
    --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
    --step-3:  clamp(2rem, 1.6rem + 2vw, 3.1rem);
    --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.6rem);
    --step-5:  clamp(3.2rem, 2.1rem + 5.4vw, 6.8rem);

    /* Aralık & yapı */
    --container: 1200px;
    --gutter: clamp(1.2rem, 4vw, 2.5rem);
    --radius: 4px;
    --radius-lg: 10px;
    --radius-xl: 20px;
    --shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.7);
    --shadow-accent: 0 20px 50px -20px rgba(200, 247, 81, 0.35);

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & taban ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
    font-family: var(--font-body);
    font-size: var(--step-0);
    line-height: 1.65;
    color: var(--paper);
    background: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- Tipografi ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.02em;
    font-optical-sizing: auto;
}
h1 { font-size: var(--step-5); font-weight: 800; }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
.lead { font-size: var(--step-1); color: var(--paper-dim); line-height: 1.5; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }

.eyebrow {
    font-family: var(--font-mono);
    font-size: var(--step--1);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
}
.eyebrow::before {
    content: "";
    width: 28px; height: 1px;
    background: var(--accent);
    display: inline-block;
}

/* ---------- Yapı ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-ink-1 { background: var(--ink-1); }
.bg-ink-2 { background: var(--ink-2); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { margin-top: 1rem; }
.section-head p { margin-top: 1.2rem; }

/* ---------- Grain & atmosfer ---------- */
.grain {
    position: fixed; inset: 0; z-index: 9999; pointer-events: none;
    opacity: 0.035; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.glow {
    position: absolute; border-radius: 50%; pointer-events: none;
    background: radial-gradient(circle, rgba(200,247,81,0.16), transparent 70%);
    filter: blur(40px); z-index: 0;
}

/* ---------- Butonlar ---------- */
.btn {
    --btn-bg: transparent;
    display: inline-flex; align-items: center; gap: 0.6em;
    font-family: var(--font-body); font-weight: 600; font-size: var(--step-0);
    padding: 0.85em 1.5em; border-radius: 100px;
    border: 1px solid var(--line-2);
    background: var(--btn-bg);
    color: var(--paper);
    transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.4s;
    will-change: transform; line-height: 1;
}
.btn:hover { transform: translateY(-2px); border-color: var(--paper); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-accent {
    --btn-bg: var(--accent);
    color: var(--accent-ink); border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-700); border-color: var(--accent-700); box-shadow: var(--shadow-accent); }
.btn-ghost { background: rgba(244,243,238,0.04); }
.btn-sm { padding: 0.6em 1.1em; font-size: var(--step--1); }
.btn-lg { padding: 1.05em 2em; font-size: var(--step-1); }

/* ---------- Header ---------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(11, 12, 14, 0.78);
    backdrop-filter: blur(14px) saturate(140%);
    border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 0.55rem; }
.brand-mark { color: var(--accent); display: grid; place-items: center; }
.brand-text { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em; }
.brand-accent { color: var(--accent); }

.nav { display: flex; gap: 0.35rem; }
.nav-link {
    position: relative; padding: 0.5rem 0.85rem; font-size: var(--step--1); font-weight: 500;
    color: var(--paper-dim); border-radius: 100px; transition: color 0.25s, background 0.25s;
}
.nav-link:hover { color: var(--paper); }
.nav-link.is-active { color: var(--accent); }
.nav-link.is-active::after {
    content: ""; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
}

.header-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--paper); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil menü */
.mobile-menu {
    position: fixed; inset: 76px 0 0; z-index: 999;
    background: var(--ink); padding: 2rem var(--gutter);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-nav { display: flex; flex-direction: column; gap: 0.3rem; }
.mobile-nav a { font-family: var(--font-display); font-size: var(--step-2); font-weight: 600; padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
.mobile-nav a.is-active { color: var(--accent); }
.mobile-nav .btn { margin-top: 1.5rem; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--ink-1); padding-top: clamp(4rem, 8vw, 7rem); }
.footer-cta { text-align: center; padding-bottom: clamp(3rem, 6vw, 5rem); border-bottom: 1px solid var(--line); }
.footer-cta-title { font-size: var(--step-4); margin: 1rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-block: clamp(3rem, 5vw, 4rem); }
.footer-tag { color: var(--muted); margin: 1rem 0 1.5rem; max-width: 30ch; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { font-family: var(--font-mono); font-size: var(--step--1); color: var(--paper-dim); border-bottom: 1px solid var(--line-2); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.footer-social a:hover { color: var(--accent); border-color: var(--accent); }
.footer-col h4 { font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); margin-bottom: 1.2rem; font-weight: 500; }
.footer-col a, .footer-loc { display: block; color: var(--paper-dim); padding: 0.35rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; padding-block: 2rem; border-top: 1px solid var(--line); color: var(--muted); font-size: var(--step--1); }

/* ---------- WhatsApp float ---------- */
.wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--accent); color: var(--accent-ink);
    display: grid; place-items: center; box-shadow: var(--shadow-accent);
    transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08) rotate(-6deg); }

/* ---------- Reveal animasyonları ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }
[data-reveal][data-delay="5"] { transition-delay: 0.40s; }

/* ---------- Kartlar & ortak bileşenler ---------- */
.card {
    background: var(--ink-2); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 2rem;
    transition: border-color 0.35s, transform 0.35s var(--ease), background 0.35s;
    position: relative; overflow: hidden;
}
.card:hover { border-color: var(--line-2); transform: translateY(-4px); }

.badge {
    display: inline-flex; align-items: center; gap: 0.4em;
    font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--accent); background: rgba(200,247,81,0.08);
    border: 1px solid rgba(200,247,81,0.25); border-radius: 100px; padding: 0.35em 0.8em;
}
.tag { font-family: var(--font-mono); font-size: var(--step--1); color: var(--muted); }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Bölücü çizgi */
.rule { height: 1px; background: var(--line); border: 0; }

/* Prose (blog/hizmet içerik metni) */
.prose { max-width: 70ch; color: var(--paper-dim); font-size: var(--step-1); line-height: 1.8; }
.prose p { margin-bottom: 1.4em; }
.prose h2, .prose h3 { color: var(--paper); margin: 1.8em 0 0.6em; }
.prose a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.prose ul { list-style: none; }
.prose ul li { position: relative; padding-left: 1.6em; margin-bottom: 0.6em; }
.prose ul li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }

/* =====================================================================
   SAYFA BİLEŞENLERİ
   ===================================================================== */

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(8rem, 16vh, 12rem); padding-bottom: 0; overflow: hidden; }
.hero-inner { position: relative; z-index: 2; }
.hero-grid-lines {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 70% 0%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 0%, #000 30%, transparent 75%);
    opacity: 0.6;
}
.hero-title { margin: 1.5rem 0; max-width: 16ch; }
.hero-lead { max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    margin-top: clamp(3rem, 7vw, 5rem); padding-top: 2.5rem; border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-num { font-family: var(--font-display); font-size: var(--step-3); font-weight: 800; color: var(--paper); letter-spacing: -0.03em; }
.stat-label { font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee { margin-top: clamp(3rem, 7vw, 5rem); padding: 1.4rem 0; border-block: 1px solid var(--line); overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; align-items: center; gap: 1.5rem; animation: marquee 38s linear infinite; }
.marquee-item { font-family: var(--font-display); font-size: var(--step-2); font-weight: 700; color: var(--paper); letter-spacing: -0.02em; }
.marquee-dot { color: var(--accent); font-size: 1rem; }

/* Marka şeridi (birlikte çalışılan markalar) */
.brand-strip { padding-block: clamp(2.5rem, 5vw, 4rem); }
.brand-strip-label { justify-content: center; margin-bottom: 1.6rem; }
.marquee-brands { margin-top: 0; border-block: 1px solid var(--line); }
.marquee-brands .marquee-item { font-size: var(--step-1); font-weight: 700; color: var(--paper-dim); transition: color 0.3s var(--ease); }
.marquee-brands:hover .marquee-item { color: var(--paper); }
.marquee-track-rev { animation-duration: 46s; animation-direction: reverse; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Bölüm başlığı satırı ---------- */
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; max-width: none; }
@media (max-width: 640px) { .head-row { flex-direction: column; align-items: flex-start; } }

/* ---------- Hizmet kartları ---------- */
.service-card { display: flex; flex-direction: column; min-height: 260px; }
.service-card::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(200,247,81,0.08), transparent 40%);
    opacity: 0; transition: opacity 0.4s;
}
.service-card:hover::after { opacity: 1; }
.service-num { position: absolute; top: 1.4rem; right: 1.6rem; font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted-2); }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 12px; background: rgba(200,247,81,0.08); border: 1px solid rgba(200,247,81,0.2); color: var(--accent); margin-bottom: 1.4rem; }
.service-icon svg { width: 24px; height: 24px; }
.service-visual { width: 110px; height: 110px; margin-bottom: 1.2rem; position: relative; display: grid; place-items: center; }
.service-visual::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle, rgba(200,247,81,0.12), transparent 65%); filter: blur(8px); }
.service-visual img { position: relative; width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s var(--ease); filter: drop-shadow(0 12px 22px rgba(0,0,0,0.45)); }
.service-card:hover .service-visual img { transform: translateY(-5px) scale(1.04); }
.service-title { font-size: var(--step-1); margin-bottom: 0.6rem; }
.service-summary { color: var(--muted); flex: 1; }
.service-link { margin-top: 1.3rem; font-family: var(--font-mono); font-size: var(--step--1); color: var(--accent); display: inline-flex; align-items: center; gap: 0.5em; }

/* ---------- Süreç ---------- */
.process-step { position: relative; padding-top: 2rem; border-top: 2px solid var(--line-2); }
.process-num { font-family: var(--font-mono); font-size: 0.85rem; color: var(--accent); }
.process-step h3 { font-size: var(--step-1); margin: 0.8rem 0 0.6rem; }

/* ---------- İş kartı ---------- */
.work-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.work-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--ink-3); border-bottom: 1px solid var(--line); }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-card:hover .work-thumb img { transform: scale(1.05); }
.work-body { display: flex; flex-direction: column; gap: 0.6rem; padding: 1.6rem; flex: 1; }
.work-top { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; }
.work-title { font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); letter-spacing: -0.02em; }
.work-sum { font-size: var(--step--1); }
.work-card .service-link { margin-top: auto; padding-top: 0.4rem; }
.work-metric { font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent); border: 1px solid rgba(200,247,81,0.25); background: rgba(200,247,81,0.06); border-radius: 100px; padding: 0.3em 0.8em; white-space: nowrap; }

/* Referans filtre çipleri */
.work-filter { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.work-chip { display: inline-flex; align-items: center; text-decoration: none; font-family: var(--font-mono); font-size: var(--step--1); color: var(--paper-dim); background: var(--ink-2); border: 1px solid var(--line-2); border-radius: 100px; padding: 0.5em 1.1em; cursor: pointer; transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease); }
.work-chip:hover { color: var(--paper); border-color: var(--paper); }
.work-chip.is-active { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }
.work-chip-count { opacity: 0.55; margin-left: 0.15em; }
.work-chip.is-active .work-chip-count { opacity: 0.7; }
.work-card.is-hidden { display: none; }
.work-empty { color: var(--muted); margin-top: 1rem; }

/* ---------- Neden biz ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 1rem; }
.why-list li { display: flex; align-items: center; gap: 1rem; font-size: var(--step-1); padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.why-check { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; }
.why-check svg { width: 18px; height: 18px; }
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Müşteri yorumları ---------- */
.testimonial { display: flex; flex-direction: column; gap: 1.2rem; }
.testimonial-stars { color: var(--accent); letter-spacing: 0.15em; font-size: 1rem; }
.testimonial-text { font-family: var(--font-display); font-size: var(--step-1); line-height: 1.4; letter-spacing: -0.01em; color: var(--paper); flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; flex-shrink: 0; }
.testimonial-name { display: block; font-weight: 600; }
.testimonial-title { display: block; font-family: var(--font-mono); font-size: 0.76rem; color: var(--muted); }

/* ---------- Blog kartı ---------- */
.post-card { display: flex; flex-direction: column; gap: 0.7rem; min-height: 200px; }
.post-title { font-size: var(--step-1); }
.post-date { margin-top: auto; font-family: var(--font-mono); font-size: var(--step--1); color: var(--muted-2); }

/* ---------- İç sayfa hero ---------- */
.page-hero { position: relative; padding-top: clamp(8rem, 14vh, 11rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero-title { margin: 1.2rem 0; max-width: 18ch; }
.page-hero-sub { max-width: 56ch; }
.crumbs { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: var(--step--1); color: var(--muted); margin-bottom: 1.5rem; flex-wrap: wrap; }
.crumbs a { color: var(--muted); transition: color 0.2s; }
.crumbs a:hover { color: var(--accent); }
.crumb-sep { color: var(--muted-2); }
.container-narrow { max-width: 820px; }

/* ---------- Hizmet liste satırları ---------- */
.services-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: 1.5rem; padding: 2rem 0.5rem; border-bottom: 1px solid var(--line); transition: padding 0.3s var(--ease), background 0.3s; }
.service-row:hover { padding-left: 1.5rem; background: linear-gradient(90deg, rgba(200,247,81,0.04), transparent); }
.service-row-num { font-family: var(--font-mono); color: var(--muted-2); font-size: var(--step--1); }
.service-row-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: rgba(200,247,81,0.08); border: 1px solid rgba(200,247,81,0.2); color: var(--accent); }
.service-row-icon svg { width: 22px; height: 22px; }
.service-row-img { width: 64px; height: 64px; display: grid; place-items: center; flex-shrink: 0; }
.service-row-img img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4)); transition: transform 0.4s var(--ease); }
.service-row:hover .service-row-img img { transform: scale(1.08); }
.service-row-body { display: flex; flex-direction: column; gap: 0.3rem; }
.service-row-title { font-family: var(--font-display); font-weight: 700; font-size: var(--step-2); letter-spacing: -0.02em; }
.service-row-arrow { font-size: 1.5rem; color: var(--accent); transition: transform 0.3s var(--ease); }
.service-row:hover .service-row-arrow { transform: translateX(8px); }
@media (max-width: 640px) {
    .service-row { grid-template-columns: auto 1fr; gap: 1rem; }
    .service-row-icon, .service-row-arrow { display: none; }
    .service-row-img { width: 48px; height: 48px; }
    .service-row-title { font-size: var(--step-1); }
}

/* ---------- Detay düzeni ---------- */
.detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.detail-side { position: sticky; top: 100px; }
.service-detail-visual { background: radial-gradient(circle at 50% 35%, rgba(200,247,81,0.1), transparent 60%), var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 1.2rem; display: grid; place-items: center; }
.service-detail-visual img { width: 70%; max-width: 200px; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.5)); }
.side-cta { display: flex; flex-direction: column; gap: 1rem; }
.side-cta h3 { font-size: var(--step-1); }
.side-cta .btn { width: 100%; justify-content: center; }
.project-meta dt { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-top: 1rem; }
.project-meta dd { font-size: var(--step-1); font-weight: 600; margin-bottom: 0.5rem; }
@media (max-width: 880px) { .detail-grid { grid-template-columns: 1fr; } .detail-side { position: static; } }

/* ---------- Blog detay ---------- */
.post-cover { width: 100%; border-radius: var(--radius-lg); margin-bottom: 2.5rem; aspect-ratio: 16/8; object-fit: cover; }
.post-body { margin-inline: auto; }
.post-share { max-width: 70ch; margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 1rem; }
.post-share a { font-family: var(--font-mono); font-size: var(--step--1); color: var(--paper-dim); border: 1px solid var(--line-2); border-radius: 100px; padding: 0.4em 1em; transition: color 0.2s, border-color 0.2s; }
.post-share a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Sayfalama ---------- */
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 3rem; }
.pagination a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; font-family: var(--font-mono); transition: all 0.2s; }
.pagination a:hover { border-color: var(--paper); }
.pagination a.is-active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* ---------- İş kartı (büyük) ---------- */
.work-card-lg { min-height: 280px; padding: 2.5rem; }
.work-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.work-card-lg .work-metric { margin-top: 0; }
.work-card-lg .service-link { margin-top: auto; }

/* ---------- Fiyatlandırma ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.price-card { display: flex; flex-direction: column; }
.price-featured { border-color: rgba(200,247,81,0.4); background: linear-gradient(180deg, rgba(200,247,81,0.05), var(--ink-2)); box-shadow: var(--shadow-accent); }
.price-card .badge { align-self: flex-start; margin-bottom: 1rem; }
.price-name { font-size: var(--step-2); }
.price-desc { margin: 0.5rem 0 1.5rem; min-height: 3em; }
.price-period-tag { display: inline-block; font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); background: rgba(200,247,81,0.08); border: 1px solid rgba(200,247,81,0.22); border-radius: 100px; padding: 0.3em 0.8em; margin-bottom: 1.5rem; }
.price-card .price-period-tag + ul, .price-desc + .price-period-tag { margin-top: 0; }
.price-features { padding-top: 1.3rem; border-top: 1px solid var(--line); }
.price-features { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 0.8rem; color: var(--paper-dim); }
.price-features .why-check { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.price-features .why-check svg { width: 13px; height: 13px; }
.pricing-note { text-align: center; margin-top: 2.5rem; font-size: var(--step--1); }
.custom-package { position: relative; margin-top: clamp(3rem, 6vw, 5rem); border: 1px solid var(--line-2); border-radius: var(--radius-xl); background: linear-gradient(140deg, var(--ink-2), var(--ink-1)); padding: clamp(2.5rem, 6vw, 4.5rem); overflow: hidden; text-align: center; }
.custom-package-glow { width: 500px; height: 500px; top: -250px; left: 50%; transform: translateX(-50%); }
.custom-package-body { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
.custom-package-body h2 { font-size: var(--step-3); margin: 1rem 0 1.2rem; }
.custom-package-body .hero-actions { justify-content: center; margin-top: 2rem; }
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ---------- SSS akordeon ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.6rem 0; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: var(--step-1); letter-spacing: -0.01em; transition: color 0.2s; }
.faq-q:hover { color: var(--accent); }
.faq-icon { flex-shrink: 0; font-family: var(--font-mono); font-size: 1.5rem; color: var(--accent); transition: transform 0.3s var(--ease); line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 1.6rem; color: var(--paper-dim); max-width: 70ch; }
.faq-cta { text-align: center; margin-top: 3rem; }
.faq-cta h3 { font-size: var(--step-2); }
.faq-cta p { margin: 0.6rem 0 1.5rem; }
.faq-cta .hero-actions { justify-content: center; }

/* ---------- Formlar ---------- */
.form-layout { display: grid; grid-template-columns: 380px 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-aside h3 { font-size: var(--step-2); margin-bottom: 1.5rem; }
.form-aside .why-list li { font-size: var(--step-0); padding: 0.7rem 0; }
.form-contact { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.form-contact-item { display: flex; flex-direction: column; gap: 0.2rem; font-weight: 600; }
.form-contact-item span { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 400; }
.form-main { padding: clamp(1.6rem, 4vw, 2.5rem); }
.form { display: flex; flex-direction: column; gap: 1.2rem; position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--paper-dim); }
.field input, .field textarea, .field select {
    background: var(--ink); border: 1px solid var(--line-2); border-radius: var(--radius); color: var(--paper);
    padding: 0.85rem 1rem; font-size: var(--step-0); transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,247,81,0.12); }
.field textarea { resize: vertical; }
.field select { appearance: none; cursor: pointer; }
@media (max-width: 880px) { .form-layout { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Flash mesajlar ---------- */
.flash { padding: 1rem 1.2rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-weight: 500; border: 1px solid; }
.flash-success { background: rgba(200,247,81,0.08); border-color: rgba(200,247,81,0.35); color: var(--accent); }
.flash-error { background: rgba(255,107,94,0.08); border-color: rgba(255,107,94,0.35); color: var(--danger); }

/* ---------- İletişim listesi ---------- */
.contact-list { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-row { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.2rem; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s; }
a.contact-row:hover { border-color: rgba(200,247,81,0.3); transform: translateX(4px); }
.contact-ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(200,247,81,0.08); border: 1px solid rgba(200,247,81,0.2); color: var(--accent); }
.contact-ico svg { width: 20px; height: 20px; }
.contact-info { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.contact-label { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.contact-val { font-size: var(--step-0); font-weight: 600; word-break: break-word; }
.contact-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.contact-social a { flex: 1; text-align: center; font-family: var(--font-mono); font-size: var(--step--1); color: var(--paper-dim); border: 1px solid var(--line-2); border-radius: 100px; padding: 0.7em 1em; transition: color 0.2s, border-color 0.2s; }
.contact-social a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Harita ---------- */
.map-frame { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; filter: grayscale(0.3) contrast(1.05); }
.map-frame iframe { display: block; }

/* ---------- Hakkımızda ---------- */
.about-intro { max-width: 60ch; }
.about-stats { margin-top: 0; }
.about-story { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.about-story-visual { position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-story-visual img { width: 100%; display: block; }
@media (max-width: 880px) { .about-story { grid-template-columns: 1fr; } }

/* ---------- Duyarlı ---------- */
@media (max-width: 760px) {
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
    .nav { display: none; }
    .nav-toggle { display: flex; }
    .header-cta .btn-sm { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    h1 { font-size: var(--step-4); }
}

/* Footer WxDigitals kredisi */
.footer-credit a { color: var(--accent, #C8F751); text-decoration: none; font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }
