:root {
  --bg: #ffffff;
  --bg-soft: #f8f9ff;
  --surface: rgba(255,255,255,.92);
  --text: #121827;
  --muted: #657086;
  --line: #e7e9f2;
  --primary: #6747f5;
  --primary-2: #5048ff;
  --primary-soft: #f0edff;
  --shadow: 0 14px 40px rgba(34, 39, 74, .08);
  --radius: 18px;
  --container: 1420px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 58% 22%, rgba(112, 76, 255, .09), transparent 23%),
    linear-gradient(180deg, #fff 0%, #fff 68%, #fbfbff 100%);
  line-height: 1.5;
}
body.dark {
  --bg: #0d1020;
  --bg-soft: #14182b;
  --surface: rgba(20,24,43,.94);
  --text: #f5f7ff;
  --muted: #aab2c8;
  --line: #2b3148;
  --primary-soft: #272045;
  --shadow: 0 14px 40px rgba(0,0,0,.28);
  background: radial-gradient(circle at 58% 22%, rgba(112,76,255,.18), transparent 24%), var(--bg);
}
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; }
img, svg { display: block; }
.container { width: min(calc(100% - 42px), var(--container)); margin-inline: auto; }
.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; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { height: 64px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 24px; font-weight: 800; letter-spacing: -.7px; white-space: nowrap; }
.brand img { width: 38px; height: 38px; }
.main-nav { display: flex; align-items: center; gap: 38px; height: 100%; }
.main-nav a { position: relative; display: inline-flex; align-items: center; gap: 7px; height: 100%; font-size: 15px; font-weight: 650; color: color-mix(in srgb, var(--text) 85%, transparent); }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--primary); transform: scaleX(0); transition: .2s; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--primary); }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.icon-btn { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); color: var(--text); cursor: pointer; }
.icon-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.login-link { font-weight: 650; font-size: 15px; }
.menu-toggle { display: none; width: 42px; height: 42px; border-radius: 12px; background: var(--bg-soft); cursor: pointer; }
.menu-toggle span { display: block; width: 21px; height: 2px; margin: 4px auto; background: var(--text); border-radius: 2px; }

.btn { min-height: 48px; padding: 0 22px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 750; border: 1px solid transparent; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; fill: currentColor; }
.btn-primary { color: #fff; background: linear-gradient(135deg, #7048f9, #5142ed); box-shadow: 0 11px 24px rgba(95, 70, 242, .24); }
.btn-secondary { color: var(--text); background: var(--surface); border-color: var(--line); }
.btn-small { min-height: 40px; padding: 0 18px; font-size: 14px; }

.hero { min-height: 345px; display: grid; grid-template-columns: 1.06fr .62fr 1.2fr; align-items: center; gap: 42px; padding-top: 36px; padding-bottom: 24px; }
.eyebrow { display: none; color: var(--primary); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-copy h1 { margin: 0; font-size: clamp(44px, 4vw, 68px); line-height: 1.02; letter-spacing: -3px; }
.hero-copy h1 span { display: block; color: #6251f7; }
.hero-copy > p { max-width: 610px; margin: 18px 0 22px; color: var(--muted); font-size: 17px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art { position: relative; min-height: 270px; }
.photo { position: absolute; object-fit: cover; border-radius: 16px; border: 5px solid #fff; box-shadow: 0 18px 38px rgba(22,30,70,.16); }
.photo-main { width: 220px; height: 170px; top: 22px; right: 6px; transform: rotate(-2deg); z-index: 1; }
.photo-left { width: 130px; height: 124px; left: 6px; bottom: 18px; transform: rotate(-8deg); z-index: 3; }
.photo-right { width: 88px; height: 92px; right: 20px; bottom: 8px; transform: rotate(7deg); z-index: 4; }
.dot-grid { position: absolute; width: 64px; height: 64px; top: 55px; left: 12px; opacity: .65; background-image: radial-gradient(#8172ff 2px, transparent 2px); background-size: 14px 14px; }
.curve { position: absolute; width: 100px; right: 42px; bottom: -2px; fill: none; stroke: #8c7fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.upload-card { min-height: 295px; border: 2px dashed #a99eff; border-radius: 20px; padding: 24px 26px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: color-mix(in srgb, var(--surface) 86%, transparent); cursor: pointer; transition: .2s; outline: none; }
.upload-card:hover, .upload-card.dragover, .upload-card:focus-visible { border-color: var(--primary); background: color-mix(in srgb, var(--primary-soft) 42%, var(--surface)); box-shadow: 0 16px 45px rgba(91,74,235,.12); }
.upload-icon { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 50%; background: var(--primary-soft); margin-bottom: 10px; }
.upload-icon svg { width: 40px; height: 40px; fill: #6c50ef; stroke: #fff; stroke-width: 1.4; }
.upload-card h2 { margin: 0; font-size: 21px; letter-spacing: -.4px; }
.upload-card p { margin: 4px 0 7px; color: var(--muted); }
.upload-card p button { padding: 0; color: var(--primary); font-weight: 700; background: transparent; cursor: pointer; }
.upload-card small { color: #7a8398; font-size: 13px; }
.thumb-row { display: grid; grid-template-columns: repeat(5, 78px) 72px; gap: 10px; margin-top: 26px; width: 100%; justify-content: center; }
.thumb-row img, .thumb-row span { width: 78px; height: 53px; border-radius: 10px; object-fit: cover; background: var(--bg-soft); }
.thumb-row span { width: 72px; display: grid; place-items: center; font-weight: 800; }
.upload-status { min-height: 18px; margin-top: 10px; color: var(--primary); font-size: 13px; font-weight: 700; }

.tools-section { padding-top: 0; padding-bottom: 22px; }
.tool-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tool-card { min-height: 98px; display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 16px; text-align: left; padding: 17px 18px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); color: var(--text); box-shadow: 0 5px 14px rgba(25,31,55,.045); cursor: pointer; transition: .22s; }
.tool-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--primary) 40%, var(--line)); box-shadow: var(--shadow); }
.tool-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 13px; color: white; }
.tool-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.tool-icon.purple { background: linear-gradient(135deg,#7a4cff,#4d3ee9); }
.tool-icon.blue { background: linear-gradient(135deg,#278cff,#315bea); }
.tool-icon.green { background: linear-gradient(135deg,#20cf66,#0ca449); }
.tool-icon.orange { background: linear-gradient(135deg,#ff9b20,#ff6a00); }
.tool-icon.cyan { background: linear-gradient(135deg,#10bdd7,#0495b9); }
.tool-icon.pink { background: linear-gradient(135deg,#ff3f87,#f00c58); }
.tool-icon.violet { background: linear-gradient(135deg,#7750ff,#4d32dd); }
.tool-icon.red { background: linear-gradient(135deg,#ff594d,#ec1f25); }
.tool-copy { min-width: 0; }
.tool-copy strong { display: block; margin-bottom: 3px; font-size: 17px; }
.tool-copy small { display: block; color: var(--muted); font-size: 13px; line-height: 1.45; }
.arrow { font-size: 30px; font-weight: 300; color: var(--muted); }

.benefits { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 0; margin-bottom: 14px; padding: 18px 38px; border-radius: 18px; background: linear-gradient(90deg, rgba(242,239,255,.7), rgba(245,248,255,.72)); }
body.dark .benefits { background: #151a30; }
.benefits article { display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 18px; padding: 0 32px; border-right: 1px solid var(--line); }
.benefits article:last-child { border-right: 0; }
.benefit-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; }
.benefit-icon svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit-icon.purple { color: #6547f4; background: #ede9ff; }
.benefit-icon.green { color: #16b95b; background: #e8faee; }
.benefit-icon.blue { color: #1676ef; background: #e9f3ff; }
.benefits h3 { margin: 0 0 4px; font-size: 17px; }
.benefits p { margin: 0; color: var(--muted); font-size: 13px; }

.pricing { display: none; margin-top: 40px; margin-bottom: 40px; padding: 38px; border-radius: 24px; color: #fff; background: linear-gradient(135deg,#141a38,#6747f5); align-items: center; justify-content: space-between; gap: 28px; }
.pricing .eyebrow { display: block; color: #d9d2ff; }
.pricing h2 { margin: 7px 0 8px; font-size: 34px; }
.pricing p { margin: 0; color: rgba(255,255,255,.8); }
.pricing .btn-primary { background: white; color: #5842e8; box-shadow: none; }

.site-footer { border-top: 1px solid var(--line); background: color-mix(in srgb, var(--bg) 96%, #f4f4ff); }
.footer-main { display: grid; grid-template-columns: 2.2fr repeat(3, .8fr) 1.5fr; gap: 42px; padding-top: 22px; padding-bottom: 16px; }
.footer-brand p { max-width: 300px; color: var(--muted); font-size: 13px; }
.footer-col, .socials { display: flex; flex-direction: column; gap: 7px; }
.footer-col h3, .socials h3 { margin: 2px 0 5px; font-size: 15px; }
.footer-col a { color: var(--muted); font-size: 13px; }
.footer-col a:hover { color: var(--primary); }
.socials > div { display: flex; gap: 9px; }
.socials a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); font-size: 13px; font-weight: 750; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 12px; padding-bottom: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.footer-bottom div { display: flex; gap: 28px; align-items: center; }

.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; visibility: hidden; opacity: 0; transition: .2s; }
.modal.open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(11,15,32,.62); backdrop-filter: blur(8px); }
.modal-panel { position: relative; z-index: 1; width: min(900px, calc(100% - 28px)); max-height: calc(100vh - 28px); overflow: auto; padding: 30px; border-radius: 24px; background: var(--bg); box-shadow: 0 40px 100px rgba(0,0,0,.32); transform: translateY(14px) scale(.985); transition: .22s; }
.modal.open .modal-panel { transform: none; }
.modal-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; color: var(--text); background: var(--bg-soft); font-size: 28px; cursor: pointer; }
.modal-head { padding-right: 52px; }
.modal-badge { color: var(--primary); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.modal-head h2 { margin: 5px 0 5px; font-size: 32px; }
.modal-head p { margin: 0 0 22px; color: var(--muted); }
.workspace-upload { min-height: 260px; border: 2px dashed #a99eff; border-radius: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: var(--bg-soft); cursor: pointer; }
.workspace-upload svg { width: 58px; height: 58px; fill: var(--primary-soft); stroke: var(--primary); stroke-width: 1.5; }
.workspace-upload strong { font-size: 21px; }
.workspace-upload small { color: var(--muted); }
.editor { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(250px,.7fr); gap: 22px; }
.preview-wrap { min-height: 360px; display: grid; place-items: center; padding: 16px; border-radius: 16px; background: repeating-conic-gradient(#eee 0 25%,#fff 0 50%) 50% / 20px 20px; overflow: hidden; }
body.dark .preview-wrap { background: repeating-conic-gradient(#262b42 0 25%,#1a1f34 0 50%) 50% / 20px 20px; }
.preview-wrap canvas { max-width: 100%; max-height: 520px; box-shadow: 0 12px 30px rgba(0,0,0,.15); }
.controls { display: flex; flex-direction: column; gap: 14px; align-self: start; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.control-group { display: flex; flex-direction: column; gap: 7px; }
.control-group label { font-size: 13px; font-weight: 750; }
.control-group input, .control-group select { width: 100%; height: 44px; padding: 0 12px; color: var(--text); background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; outline: none; }
.control-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.range-value { color: var(--primary); font-weight: 800; }
.editor-actions { grid-column: 2; display: flex; gap: 10px; justify-content: flex-end; }
.editor-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 12px; text-align: center; }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 200; transform: translate(-50%, 20px); min-width: 260px; max-width: calc(100% - 32px); padding: 12px 18px; border-radius: 12px; color: white; background: #171c31; box-shadow: 0 14px 35px rgba(0,0,0,.25); opacity: 0; pointer-events: none; transition: .25s; text-align: center; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1180px) {
  .nav-wrap { grid-template-columns: auto 1fr auto; }
  .main-nav { gap: 22px; }
  .hero { grid-template-columns: 1fr .72fr; }
  .hero-art { display: none; }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits { padding-inline: 14px; }
  .benefits article { padding-inline: 18px; }
  .footer-main { grid-template-columns: 2fr repeat(3,1fr); }
  .socials { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav-wrap { grid-template-columns: auto auto 1fr; }
  .brand { font-size: 20px; }
  .menu-toggle { display: block; order: 3; justify-self: end; }
  .main-nav { position: fixed; left: 20px; right: 20px; top: 74px; display: none; height: auto; padding: 12px; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--line); border-radius: 16px; background: var(--bg); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { height: 46px; padding: 0 12px; border-radius: 9px; }
  .main-nav a:hover { background: var(--bg-soft); }
  .main-nav a::after { display: none; }
  .nav-actions { justify-self: start; gap: 10px; margin-left: 14px; }
  .login-link { display: none; }
  .nav-actions .btn { display: none; }
  .hero { grid-template-columns: 1fr; gap: 28px; padding-top: 46px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-buttons { justify-content: center; }
  .upload-card { min-height: 320px; }
  .benefits { grid-template-columns: 1fr; gap: 16px; padding-block: 24px; }
  .benefits article { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 14px 16px; }
  .benefits article:last-child { border-bottom: 0; padding-bottom: 0; }
  .footer-main { grid-template-columns: 2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .editor { grid-template-columns: 1fr; }
  .editor-actions { grid-column: 1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header .container { width: calc(100% - 20px); }
  .nav-wrap { height: 60px; gap: 8px; }
  .brand { font-size: 17px; letter-spacing: -.4px; }
  .brand img { width: 33px; height: 33px; }
  .nav-actions { margin-left: 4px; }
  .icon-btn { width: 36px; height: 36px; }
  .hero { padding-top: 32px; }
  .hero-copy h1 { font-size: 43px; letter-spacing: -2px; }
  .hero-copy > p { font-size: 15px; }
  .hero-buttons .btn { width: 100%; }
  .upload-card { min-height: 300px; padding-inline: 18px; }
  .upload-card h2 { font-size: 18px; }
  .thumb-row { grid-template-columns: repeat(3, 1fr); }
  .thumb-row img:nth-of-type(n+4), .thumb-row span { display: none; }
  .thumb-row img { width: 100%; }
  .tool-grid { grid-template-columns: 1fr; }
  .tool-card { min-height: 92px; }
  .benefits { border-radius: 14px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-brand, .socials { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; gap: 12px 18px; }
  .modal-panel { padding: 22px 16px; }
  .modal-head h2 { font-size: 26px; }
  .preview-wrap { min-height: 260px; }
  .control-row { grid-template-columns: 1fr; }
  .editor-actions { flex-direction: column-reverse; }
  .editor-actions .btn { width: 100%; }
}

/* 2026-08 düzeltmeleri */
html { scroll-padding-top: 88px; }
.section-heading { margin: 0 0 20px; text-align: center; }
.section-heading .eyebrow { display: block; }
.section-heading h2 { margin: 6px 0 7px; font-size: clamp(27px, 3vw, 38px); letter-spacing: -1px; }
.section-heading p { margin: 0; color: var(--muted); }
.pricing { display: flex; }
.faq { padding-top: 38px; padding-bottom: 62px; max-width: 900px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); margin-bottom: 12px; overflow: hidden; }
.faq summary { padding: 17px 20px; cursor: pointer; font-weight: 800; }
.faq details p { margin: 0; padding: 0 20px 18px; color: var(--muted); line-height: 1.65; }
.upload-status.error { color: #d83030; }
.thumb-row:has(.selected-file-label) { grid-template-columns: minmax(160px, 280px) 72px; }
.thumb-row:has(.selected-file-label) img { width: 100%; height: 76px; }
.selected-file-label { height: 76px !important; }
.workspace-upload.dragover { border-color: var(--primary); background: color-mix(in srgb, var(--primary-soft) 50%, var(--bg-soft)); }
.socials p { margin: 0 0 4px; color: var(--muted); font-size: 13px; }
.socials .contact-pill { width: max-content; min-width: 118px; height: 38px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px; border-radius: 10px; border: 1px solid var(--line); color: var(--primary); font-size: 13px; font-weight: 800; }
.content-page { padding-top: 70px; padding-bottom: 80px; }
.content-card { max-width: 900px; margin: 0 auto; padding: clamp(24px, 4vw, 48px); border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow); }
.content-card h1 { margin: 0 0 12px; font-size: clamp(34px, 5vw, 56px); letter-spacing: -2px; }
.content-card h2 { margin-top: 34px; }
.content-card p, .content-card li { color: var(--muted); line-height: 1.75; }
.content-card .lead { font-size: 18px; }
.content-card .btn { margin-top: 12px; }
.breadcrumb { margin-bottom: 20px; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--primary); }
.tool-landing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 30px 0; }
.tool-landing-grid > div { padding: 20px; border-radius: 16px; background: var(--bg-soft); }
.tool-landing-grid h3 { margin: 0 0 7px; }
.not-found { min-height: 60vh; display: grid; place-items: center; text-align: center; }

@media (max-width: 900px) {
  .pricing { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .section-heading { text-align: left; }
  .thumb-row:has(.selected-file-label) { grid-template-columns: 1fr 72px; }
  .tool-landing-grid { grid-template-columns: 1fr; }
  .content-page { padding-top: 34px; }
}


/* Son kalite ve erişilebilirlik düzenlemeleri */
.contact-layout { display: grid; grid-template-columns: minmax(220px,.75fr) minmax(0,1.25fr); gap: 38px; align-items: start; }
.contact-form { display: grid; gap: 16px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--bg-soft); }
.contact-form label { display: grid; gap: 7px; color: var(--text); font-size: 14px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; padding: 12px 13px; background: var(--surface); color: var(--text); font: inherit; outline: none; }
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent); }
.contact-form .btn { width: max-content; }
.form-note { margin: 0 !important; font-size: 12px; }
.modal-panel:focus-within { outline: none; }
@media (max-width: 720px) { .contact-layout { grid-template-columns: 1fr; gap: 20px; } .contact-form { padding: 18px; } .contact-form .btn { width: 100%; } }

/* Gizlilik ve çerez tercihleri */
.cookie-banner { position: fixed; z-index: 10000; inset: auto 16px 16px; margin: auto; max-width: 1080px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: 0 24px 70px rgba(25,18,64,.22); color: var(--text); }
.cookie-banner__content { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 22px; align-items: center; }
.cookie-banner h2 { margin: 0 0 6px; font-size: 20px; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.cookie-banner a { color: var(--primary); font-weight: 800; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-banner__actions .btn { white-space: nowrap; }
.cookie-settings-button { position: fixed; z-index: 9990; right: 16px; bottom: 16px; border: 1px solid var(--line); border-radius: 999px; padding: 9px 13px; background: var(--surface); color: var(--text); box-shadow: var(--shadow); font: 700 12px/1 inherit; cursor: pointer; }
.cookie-banner ~ .cookie-settings-button { display: none; }
@media (max-width: 760px) {
  .cookie-banner { inset: auto 10px 10px; padding: 16px; }
  .cookie-banner__content { grid-template-columns: 1fr; gap: 16px; }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr; }
  .cookie-banner__actions .btn { width: 100%; }
  .cookie-settings-button { right: 10px; bottom: 10px; }
}
.skip-link { position: fixed; z-index: 11000; left: 12px; top: 12px; transform: translateY(-160%); padding: 10px 14px; border-radius: 10px; background: var(--text); color: var(--bg); font-weight: 800; transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--primary) 65%, white); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }

/* Gerçek çok sayfalı araç çalışma alanları */
.standalone-tool{margin:34px 0 44px;padding:28px;border:1px solid var(--line);border-radius:24px;background:var(--bg-soft)}
.tool-workspace-heading{text-align:center;margin-bottom:22px}.tool-workspace-heading h2{margin:6px 0}.tool-workspace-heading p{color:var(--muted)}
.tool-page .tool-page-modal{position:static;display:block;visibility:visible;opacity:1;background:transparent;z-index:auto}
.tool-page .tool-page-modal .modal-panel{position:static;width:100%;max-height:none;overflow:visible;padding:0;background:transparent;box-shadow:none;transform:none}
.tool-page .workspace-upload{background:var(--bg);min-height:300px}
.tool-page .editor{background:var(--bg);padding:22px;border-radius:20px;border:1px solid var(--line)}
.tool-page .modal-head{padding-right:0}.tool-page .modal-badge{display:inline-block}.tool-page .content-card{max-width:1100px}
#uploadCard[href]{color:inherit;text-decoration:none}
@media(max-width:700px){.standalone-tool{padding:16px;margin:24px -6px 34px}.tool-page .editor{padding:12px}.tool-page .workspace-upload{min-height:230px}}

.related-tools{margin-top:2.5rem;padding-top:2rem;border-top:1px solid var(--border,#e7e7ef)}
.related-tool-links{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:16px}
.related-tool-links a{display:flex;align-items:center;justify-content:center;min-height:52px;padding:12px 16px;border:1px solid var(--border,#e7e7ef);border-radius:14px;font-weight:700;text-align:center;background:var(--card,#fff);transition:transform .2s ease,border-color .2s ease}
.related-tool-links a:hover{transform:translateY(-2px);border-color:#6c4cff}
@media(max-width:720px){.related-tool-links{grid-template-columns:1fr}}
