/* ===== Masöz Çağır — site stilleri ===== */
:root {
    --ink: #1C2826;
    --muted: #56655F;
    --deep: #173F3A;
    --deep-2: #0F2E2A;
    --oil: #C98F2E;
    --oil-soft: #F5E8CC;
    --mist: #EEF3F1;
    --line: #D6E1DD;
    --paper: #FFFFFF;
    --wa: #1B9E50;
    --wa-dark: #147D3F;
    --serif: "Fraunces", Georgia, "Times New Roman", serif;
    --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --wrap: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--mist);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.2; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
[id] { scroll-margin-top: 80px; }
:focus-visible { outline: 3px solid var(--oil); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--paper); padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; top: 8px; }

/* ===== Butonlar ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px; border-radius: 10px; border: 2px solid transparent;
    font: 700 15px/1.2 var(--sans); text-decoration: none; cursor: pointer;
    transition: background-color .2s, border-color .2s, color .2s;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); }
.btn-ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-block { width: 100%; }

/* ===== Üst bar ===== */
.topbar {
    position: sticky; top: 0; z-index: 50;
    background: var(--deep-2); color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 30px; height: 30px; }
.brand-name { font-family: var(--serif); font-size: 21px; font-weight: 600; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { text-decoration: none; font-size: 15px; font-weight: 600; opacity: .85; }
.nav a:hover { opacity: 1; }
.nav .btn { padding: 9px 16px; font-size: 14px; opacity: 1; }
@media (max-width: 760px) {
    .nav a:not(.btn) { display: none; }
}

/* ===== Hero ===== */
.hero { background: var(--deep); color: #fff; padding: 64px 0 72px; position: relative; overflow: hidden; }
.hero::after {
    content: ""; position: absolute; right: -160px; top: -120px; width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(201,143,46,.42), rgba(201,143,46,0));
    pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.3rem, 6.5vw, 4.4rem); max-width: 13ch; font-weight: 600; }
.hero-lead { font-size: clamp(1.05rem, 2.2vw, 1.2rem); max-width: 52ch; margin: 20px 0 30px; color: rgba(255,255,255,.85); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-areas { margin: 36px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-areas a {
    display: inline-block; text-decoration: none; padding: 7px 14px; border-radius: 999px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); font-size: 14px; font-weight: 600;
}
.hero-areas a:hover { background: rgba(255,255,255,.16); }
.hero-sub { font-size: 14px; color: rgba(255,255,255,.65); margin: 28px 0 0; }

.hero--page { padding: 44px 0 52px; }
.hero--page h1 { font-size: clamp(2rem, 5vw, 3.2rem); max-width: 24ch; }
.crumbs { font-size: 14px; color: rgba(255,255,255,.7); margin: 0 0 16px; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ===== Bölümler ===== */
.section { padding: 64px 0; }
.section--white { background: var(--paper); }
.section-head { max-width: 640px; margin-bottom: 32px; }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.section-head p { color: var(--muted); margin: 10px 0 0; }

/* ===== Masöz kartları ===== */
.masoz-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.m-card { background: var(--paper); border-radius: 14px; overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; }
.m-photo { aspect-ratio: 4 / 5; background: var(--oil-soft); overflow: hidden; }
.m-photo img { width: 100%; height: 100%; object-fit: cover; }
.m-initial { width: 100%; height: 100%; display: grid; place-items: center; font: 600 64px/1 var(--serif); color: var(--oil); }
.m-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.m-body h3 { font-size: 20px; }
.m-body .btn { margin-top: auto; padding: 11px 12px; font-size: 14px; }
.m-card--skeleton .m-photo { animation: pulse 1.4s ease-in-out infinite; }
.m-card--skeleton .m-line { height: 18px; width: 60%; border-radius: 6px; background: var(--mist); }
.m-card--skeleton .m-btn { height: 42px; border-radius: 10px; background: var(--mist); }
@keyframes pulse { 50% { opacity: .55; } }
.grid-note { grid-column: 1 / -1; background: var(--paper); border: 1px dashed var(--line); border-radius: 14px; padding: 28px; text-align: center; color: var(--muted); }
.grid-note .btn { margin-top: 12px; }
@media (max-width: 560px) {
    .masoz-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .m-body { padding: 10px 10px 12px; gap: 10px; }
    .m-body h3 { font-size: 17px; }
    .m-body .btn { font-size: 13px; padding: 10px 8px; gap: 6px; }
    .m-body .btn svg { width: 16px; height: 16px; }
}

/* ===== Adımlar ===== */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.steps li { counter-increment: step; border-top: 2px solid var(--deep); padding-top: 18px; }
.steps li::before { content: counter(step); display: block; font: 600 40px/1 var(--serif); color: var(--oil); margin-bottom: 10px; }
.steps h3 { font-size: 21px; margin-bottom: 8px; }
.steps p { color: var(--muted); margin: 0; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 24px; } }

/* ===== İçerik (prose) ===== */
.split { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.split h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 20px; } }
.prose { max-width: 68ch; font-size: 17px; }
.prose h2 { font-size: clamp(1.45rem, 3vw, 1.85rem); margin: 44px 0 14px; }
.prose h3 { font-size: 1.25rem; margin: 30px 0 10px; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }
.prose a { color: var(--deep); text-decoration-color: var(--oil); text-underline-offset: 3px; font-weight: 600; }
.prose strong { font-weight: 700; }
.prose > :first-child { margin-top: 0; }
.note { background: var(--oil-soft); border-radius: 12px; padding: 18px 20px; font-size: 16px; margin: 28px 0; }
.note p:last-child { margin-bottom: 0; }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 56px; }
.article-meta { font-size: 14px; color: rgba(255,255,255,.7); margin: 16px 0 0; }
.aside-box { position: sticky; top: 90px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.aside-box h2 { font-size: 20px; margin-bottom: 8px; }
.aside-box p { font-size: 15px; color: var(--muted); }
@media (max-width: 960px) {
    .article-layout { grid-template-columns: 1fr; gap: 32px; }
    .aside-box { position: static; }
}

/* ===== Bölge kartları ===== */
.area-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area {
    display: block; text-decoration: none; background: var(--paper); border: 1px solid var(--line);
    border-radius: 14px; padding: 24px; transition: border-color .2s;
}
.area:hover { border-color: var(--deep); }
.area h3 { font-size: 23px; margin-bottom: 8px; }
.area p { color: var(--muted); font-size: 15px; margin: 0 0 14px; }
.area span { font-weight: 700; color: var(--deep); font-size: 15px; text-decoration: underline; text-decoration-color: var(--oil); text-underline-offset: 3px; }
.section--white .area { background: var(--mist); border-color: transparent; }
.section--white .area:hover { border-color: var(--deep); }
@media (max-width: 860px) { .area-list { grid-template-columns: 1fr; } }

.chips { list-style: none; margin: 0 0 1.2em; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { background: var(--mist); border-radius: 999px; padding: 6px 13px; font-size: 15px; font-weight: 600; margin: 0; }

/* ===== SSS ===== */
.faq { max-width: 780px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
    list-style: none; cursor: pointer; padding: 20px 40px 20px 0; position: relative;
    font: 600 19px/1.35 var(--serif);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px; margin-top: -8px;
    border-right: 2px solid var(--deep); border-bottom: 2px solid var(--deep); transform: rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details p { color: var(--muted); padding-right: 30px; margin: 0 0 20px; }

/* ===== Rehber listesi ===== */
.post-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.post { display: block; text-decoration: none; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 26px; transition: border-color .2s; }
.post:hover { border-color: var(--deep); }
.post h3 { font-size: 22px; margin-bottom: 10px; }
.post p { color: var(--muted); margin: 0; font-size: 15px; }
@media (max-width: 760px) { .post-list { grid-template-columns: 1fr; } }

/* ===== Çağrı bandı ===== */
.cta-band { background: var(--oil-soft); padding: 56px 0; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); max-width: 20ch; }
.cta-band p { color: var(--muted); margin: 8px 0 0; }

/* ===== Footer ===== */
.footer { background: var(--deep-2); color: rgba(255,255,255,.75); padding: 52px 0 96px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer h2 { font-family: var(--sans); font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 8px; }
.footer a { text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer .brand { color: #fff; margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 20px; font-size: 13px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== Sabit WhatsApp ===== */
.wa-float {
    position: fixed; right: 18px; bottom: 18px; z-index: 60;
    width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff;
    display: grid; place-items: center; box-shadow: 0 6px 20px rgba(20,125,63,.35);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { background: var(--wa-dark); }

/* ===== 404 ===== */
.notfound { padding: 90px 0; }
.notfound h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 12px; }
.notfound p { color: var(--muted); max-width: 50ch; }
.notfound .btn { margin-top: 12px; }
.btn-dark { background: var(--deep); color: #fff; }
.btn-dark:hover { background: var(--deep-2); }
