/* ozmetech.com — Claude Design "Ozmetech v3" tasarımından statik uyarlama. */
:root {
  --bg: #0A0A0A;
  --bg-alt: #0D0D0D;
  --card: #121212;
  --card-hover: #151715;
  --line: #1C1C1C;
  --line-2: #242424;
  --line-3: #2E2E2E;
  --text: #F2F2F0;
  --text-2: #C8C8C4;
  --muted: #9A9A96;
  --muted-2: #8C8C88;
  --accent: #9CC77F;
  --accent-deep: #35682B;
  --accent-line: #3C6B32;
  --pad-x: clamp(16px, 4vw, 64px);
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Sora, system-ui, sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--text); text-decoration: none; }
a:hover { color: var(--accent); }
img { display: block; max-width: 100%; }
::selection { background: var(--accent-deep); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--text); color: var(--bg); padding: 10px 16px; }
.skip:focus { left: 8px; }

@keyframes ozreveal { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes ozprogress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes ozmarq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ozblink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes ozsheen { 0%, 100% { opacity: .55; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-16px); } }

/* Kaydırma çubuğu ve görünür-olunca-belir yalnız destekleyen tarayıcıda; desteklemeyende
   çubuk 1 sn'de dolup öyle kalır ve içerik gizli başlardı. */
.progress { display: none; }
@supports (animation-timeline: scroll()) {
  .progress { display: block; position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 80; background: linear-gradient(90deg, var(--accent-deep), var(--accent)); transform-origin: 0 50%; animation: ozprogress 1s linear both; animation-timeline: scroll(root block); }
  .reveal { animation: ozreveal .8s cubic-bezier(.2,.7,.2,1) both; animation-timeline: view(); animation-range: entry 0% cover 24%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

.wrap { max-width: 1320px; margin: 0 auto; }
.mono { font-family: var(--mono); }
.eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.muted { color: var(--muted); }
.lead { margin: 26px 0 0; max-width: 58ch; font-size: clamp(16px, 1.4vw, 18.5px); line-height: 1.75; color: var(--muted); text-wrap: pretty; }
.p { font-size: 16.5px; line-height: 1.75; color: var(--muted); text-wrap: pretty; }
.h2 { margin: 0; font-size: clamp(28px, 3.6vw, 46px); line-height: 1.1; font-weight: 700; letter-spacing: -0.03em; text-wrap: balance; }
.h2-lg { font-size: clamp(30px, 4vw, 50px); line-height: 1.08; }

/* Header */
.header { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px var(--pad-x); background: rgba(10,10,10,.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid #1F1F1F; }
.logo { display: inline-flex; align-items: baseline; font-size: 23px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; white-space: nowrap; }
.logo .br { color: var(--accent); }
.logo:hover { color: var(--text); }
.nav { display: flex; align-items: center; gap: clamp(10px, 2vw, 28px); font-size: 14px; }
.nav a { color: var(--muted); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav a[aria-current="page"] { color: var(--accent); }
.nav .nav-cta { padding: 11px 22px; border: 1px solid var(--line-3); color: var(--text); }
.nav .nav-cta:hover, .nav .nav-cta[aria-current="page"] { border-color: var(--accent); color: var(--accent); }
.menu-btn { display: none; background: none; border: 1px solid var(--line-3); color: var(--text); font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; padding: 11px 14px; cursor: pointer; }
@media (max-width: 880px) {
  .menu-btn { display: inline-block; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: #0A0A0A; border-bottom: 1px solid #1F1F1F; padding: 8px var(--pad-x) 20px; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav .nav-cta { margin-top: 14px; text-align: center; border-bottom: 1px solid var(--line-3); }
}

/* Buttons */
.btn { display: inline-block; padding: 16px 30px; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; border: 1px solid transparent; cursor: pointer; font-family: Sora, sans-serif; text-align: center; }
.btn-solid { background: var(--text); color: var(--bg); }
.btn-solid:hover { background: var(--accent); color: var(--bg); }
.btn-line { border-color: var(--line-3); color: var(--text); font-weight: 500; }
.btn-line:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 14px 26px; font-size: 13px; letter-spacing: .1em; }
.link-mono { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }

/* Sections */
.section { padding: clamp(70px, 9vw, 130px) var(--pad-x); border-top: 1px solid var(--line); }
.section.alt { background: var(--bg-alt); }
.section.flush { border-top: 0; }
.center-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 76px); text-align: center; }
.center-head .p { margin: 22px 0 0; }
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: clamp(36px, 5vw, 76px); align-items: center; }
.split.top { align-items: start; }
.grid { display: grid; gap: 24px; }
.g-320 { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.g-340 { grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); }
.g-300 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.g-240 { grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 20px; }
.head-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(36px, 4vw, 64px); }

/* Hero */
.hero { position: relative; padding: clamp(56px, 8vw, 120px) var(--pad-x) clamp(48px, 6vw, 90px); overflow: hidden; }
.hero-sub { padding: clamp(60px, 8vw, 120px) var(--pad-x) clamp(44px, 6vw, 80px); }
.sheen { position: absolute; top: -35%; right: -10%; width: 90vmax; height: 90vmax; pointer-events: none; background: radial-gradient(ellipse at 60% 40%, rgba(53,104,43,.30), transparent 62%); animation: ozsheen 13s ease-in-out infinite; }
.hero .inner { position: relative; }
.badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border: 1px solid #262626; font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.caret { display: inline-block; width: 6px; height: 12px; background: var(--accent); animation: ozblink 1.1s steps(1) infinite; }
.h1 { margin: 0; font-size: clamp(38px, 5.6vw, 76px); line-height: 1.04; font-weight: 700; letter-spacing: -0.03em; text-wrap: balance; max-width: 20ch; }
.hero .h1:not(.h1-sub) { max-width: none; }
.h1-sub { font-size: clamp(36px, 5.2vw, 70px); line-height: 1.05; max-width: 20ch; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.crumb { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 22px; }
.crumb a { color: var(--muted-2); }
.crumb span { color: var(--accent); }

/* Marquee */
.marquee { padding: 30px 0 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee .label { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); text-align: center; margin-bottom: 24px; padding: 0 16px; }
.marquee .track { display: flex; width: max-content; animation: ozmarq 38s linear infinite; }
.marquee .item { display: grid; place-items: center; width: 220px; height: 54px; margin: 0 10px; border: 1px solid #222; font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #8E8E8A; flex: none; }

/* Counters */
.counters { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 28px; margin-top: 52px; border-top: 1px solid #1F1F1F; padding-top: 36px; }
.counters .v { font-size: clamp(30px, 3.4vw, 44px); font-weight: 700; letter-spacing: -0.03em; }
.counters .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-top: 10px; line-height: 1.5; }

/* Media */
.media { position: relative; border: 1px solid var(--line-2); overflow: hidden; background: #111; }
.media img, .media svg { width: 100%; height: 100%; object-fit: cover; }
.media img { filter: grayscale(.45) brightness(.78) contrast(1.05); transition: filter .5s, transform .8s; }
.media:hover img { filter: grayscale(0) brightness(.92); transform: scale(1.02); }
.media::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,.45)); }
.media.plain::after { display: none; }
.media .cap { position: absolute; left: 14px; bottom: 12px; z-index: 1; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: #D8D8D4; }
.h-290 { height: clamp(200px, 22vw, 290px); }
.h-200 { height: clamp(130px, 15vw, 200px); }
.h-340 { height: clamp(220px, 26vw, 340px); }
.h-260 { height: clamp(180px, 20vw, 260px); }
.h-320 { height: clamp(220px, 24vw, 320px); }
.stack { display: grid; gap: 18px; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.offset { margin-top: clamp(20px, 4vw, 48px); }

/* Glyph icon */
.glyph { width: 54px; height: 54px; position: relative; flex: none; }
.glyph i { position: absolute; inset: 0; border: 1.5px solid var(--text); }
.glyph b { position: absolute; inset: 14px; border: 1.5px solid var(--accent); }
.glyph.sm { width: 44px; height: 44px; }
.glyph.sm b { inset: 12px; }
.r-sq { border-radius: 2px; }
.r-ci { border-radius: 50%; }

/* Reasons */
.reasons { display: grid; gap: 26px; }
.reason { display: flex; gap: 20px; align-items: flex-start; border-top: 1px solid #1F1F1F; padding-top: 26px; }
.reason h3 { margin: 0 0 8px; font-size: 18px; font-weight: 600; }
.reason p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--muted); text-wrap: pretty; }

/* Cards */
.card { border: 1px solid var(--line-2); background: var(--card); transition: border-color .3s, background .3s; }
.card:hover { border-color: var(--accent-line); }
.card-pad { padding: clamp(28px, 3.4vw, 50px); display: flex; flex-direction: column; gap: 24px; }
.card-pad:hover { background: var(--card-hover); }
.card h3 { margin: 0; font-size: clamp(21px, 2.1vw, 27px); font-weight: 700; letter-spacing: -0.02em; }
.card p { margin: 0; font-size: 15.5px; line-height: 1.75; color: var(--muted); text-wrap: pretty; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.card .tags { margin-top: auto; }
.tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); border: 1px solid #262626; padding: 5px 10px; }
a.card { color: inherit; display: flex; flex-direction: column; }
a.card:hover h3 { color: var(--accent); }

/* Cases */
.case { display: flex; flex-direction: column; }
.case .media { border: 0; border-bottom: 1px solid var(--line-2); height: clamp(220px, 24vw, 320px); }
.case .body { padding: clamp(26px, 3vw, 44px); display: flex; flex-direction: column; gap: 16px; flex: 1; }
.kind { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.case h3 { font-size: clamp(22px, 2.2vw, 30px); }
.metrics { display: flex; gap: 28px; flex-wrap: wrap; margin-top: auto; border-top: 1px solid #1F1F1F; padding-top: 22px; }
.metrics .v { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.metrics .k { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-top: 6px; }

/* Steps */
.steps { border-top: 1px solid var(--line-2); }
.step { display: flex; gap: clamp(16px, 2vw, 28px); padding: 26px 0; border-bottom: 1px solid var(--line-2); }
.step .no { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; color: var(--accent); padding-top: 4px; flex: none; }
.step h3 { margin: 0 0 8px; font-size: 18px; font-weight: 600; }
.step p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--muted); text-wrap: pretty; }
.step .time { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--muted-2); white-space: nowrap; padding-top: 4px; }
@media (max-width: 520px) { .step { flex-wrap: wrap; } .step .time { margin-left: 32px; } }

/* FAQ */
.faq { border-top: 1px solid var(--line-2); }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; background: none; border: 0; color: var(--text); font-family: Sora, sans-serif; font-size: clamp(15.5px, 1.5vw, 18px); font-weight: 500; text-align: left; cursor: pointer; }
.faq-q:hover { color: var(--accent); }
.faq-q .sign { font-family: var(--mono); font-size: 22px; color: var(--accent); flex: none; }
.faq-a { margin: 0; padding: 0 50px 28px 4px; font-size: 15px; line-height: 1.8; color: var(--muted); text-wrap: pretty; }

/* Forms */
.form { display: grid; gap: 14px; border: 1px solid var(--line-2); background: var(--card); padding: clamp(24px, 3vw, 44px); }
.form .row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr)); gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.input { width: 100%; min-width: 0; padding: 15px 16px; background: var(--bg); border: 1px solid #2A2A2A; color: var(--text); font-family: Sora, sans-serif; font-size: 14.5px; border-radius: 0; }
select.input { color: #B8B8B4; appearance: none; background-image: linear-gradient(45deg, transparent 50%, #9CC77F 50%), linear-gradient(135deg, #9CC77F 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
textarea.input { resize: vertical; }
.input:focus { border-color: var(--accent); outline: none; }
.input::placeholder { color: #6F6F6B; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.6; color: var(--muted); }
.check input { margin-top: 3px; accent-color: var(--accent); }
.check a { color: var(--accent); }
.form-note { font-family: var(--mono); font-size: 11px; color: var(--muted-2); line-height: 1.6; min-height: 1.6em; }
.form-note.ok { color: var(--accent); }
.form-note.err { color: #E58A7A; }
.form button[disabled] { opacity: .6; cursor: wait; }

/* Channels */
.channel { border: 1px solid var(--line-2); padding: clamp(22px, 2.6vw, 32px); }
.channel .label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.channel .value { font-size: 17px; font-weight: 600; line-height: 1.5; }
.channel .note { font-size: 14px; line-height: 1.7; color: var(--muted); margin-top: 8px; }

/* Jobs */
.jobs { border-top: 1px solid var(--line-2); }
.job { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding: 26px 4px; border-bottom: 1px solid var(--line-2); }
.job .t { flex: 1; min-width: 220px; font-size: clamp(17px, 1.8vw, 21px); font-weight: 600; letter-spacing: -0.01em; }
.job .d { font-size: 14.5px; line-height: 1.7; color: var(--muted); flex-basis: 100%; margin-top: -6px; }
.job .s { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }

/* Blog */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.chip { padding: 9px 15px; border: 1px solid #262626; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: none; cursor: pointer; }
.chip:hover, .chip.on { border-color: var(--accent); color: var(--accent); }
.featured { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.featured .media { border: 0; min-height: clamp(240px, 26vw, 360px); }
.featured .body { padding: clamp(28px, 3.4vw, 52px); display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.featured h2 { margin: 0; font-size: clamp(24px, 2.8vw, 36px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; text-wrap: pretty; }
.featured p { margin: 0; font-size: 16px; line-height: 1.75; color: var(--muted); }
.post .media { border: 0; border-bottom: 1px solid var(--line-2); height: 190px; }
.post .body { padding: 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.post h3 { font-size: 19px; font-weight: 600; line-height: 1.4; letter-spacing: 0; text-wrap: pretty; }
.post p { font-size: 14.5px; line-height: 1.7; }
.article { max-width: 760px; margin: 0 auto; }
.article .meta { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.article h1 { margin: 0; font-size: clamp(30px, 4.2vw, 52px); line-height: 1.1; font-weight: 700; letter-spacing: -0.03em; text-wrap: balance; }
.article .intro { margin: 24px 0 0; font-size: clamp(17px, 1.5vw, 19px); line-height: 1.75; color: var(--text-2); }
.article .cover { margin: clamp(32px, 4vw, 52px) 0; height: clamp(220px, 34vw, 420px); }
.prose { font-size: 16.5px; line-height: 1.85; color: #B8B8B4; }
.prose h2 { margin: 48px 0 16px; font-size: clamp(21px, 2.3vw, 27px); line-height: 1.25; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--accent); }
.prose strong { color: var(--text); font-weight: 600; }
.prose code { font-family: var(--mono); font-size: .88em; background: #161616; border: 1px solid #242424; padding: 1px 6px; color: var(--accent); }
.callout { border-left: 2px solid var(--accent); background: #111411; padding: 18px 22px; margin: 26px 0; color: var(--text-2); }

/* Legal */
.legal { max-width: 820px; margin: 0 auto; }
.legal-item { padding: clamp(28px, 3.4vw, 44px) 0; border-bottom: 1px solid var(--line-2); }
.legal-item .no { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--accent); margin-bottom: 14px; }
.legal-item h2 { margin: 0 0 16px; font-size: clamp(20px, 2.2vw, 26px); font-weight: 600; letter-spacing: -0.02em; }
.legal-item p { margin: 0 0 12px; font-size: 15.5px; line-height: 1.85; color: #B8B8B4; text-wrap: pretty; }

/* CTA */
.cta { max-width: 900px; margin: 0 auto; text-align: center; }
.cta h2 { margin: 0 0 22px; font-size: clamp(28px, 4vw, 48px); line-height: 1.08; font-weight: 700; letter-spacing: -0.03em; text-wrap: balance; }
.cta p { margin: 0 auto 36px; max-width: 48ch; font-size: 16.5px; line-height: 1.75; color: var(--muted); }

/* Footer */
.footer { padding: clamp(50px, 6vw, 84px) var(--pad-x) 34px; border-top: 1px solid var(--line); background: var(--bg-alt); }
.footer .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 44px; }
.footer .logo { font-size: 20px; margin-bottom: 18px; }
.footer .about { margin: 0; font-size: 13.5px; line-height: 1.7; color: var(--muted-2); max-width: 32ch; }
.footer .title { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.footer .links { display: grid; gap: 11px; }
.footer .links a { font-size: 13.5px; color: var(--muted); }
.footer .links a:hover { color: var(--text); }
.footer .bottom { margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-family: var(--mono); font-size: 11px; color: var(--muted-2); }
.footer .bottom a { color: var(--muted-2); }
.footer .bottom a:hover { color: var(--accent); }

/* İnce ayarlar */
.media.plain img { object-position: center top; }
.check input { appearance: none; -webkit-appearance: none; flex: none; width: 18px; height: 18px; border: 1px solid #3A3A3A; background: var(--bg); display: grid; place-items: center; cursor: pointer; margin-top: 2px; }
.check input::after { content: ''; width: 9px; height: 5px; border-left: 2px solid var(--bg); border-bottom: 2px solid var(--bg); transform: rotate(-45deg) translate(1px, -1px); }
.check input:checked { background: var(--accent); border-color: var(--accent); }
.check input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
a.card.featured { display: grid; }
.featured .media { height: 100%; }
.article .cover.plain img { object-fit: contain; background: #0B0C0B; }
@media (max-width: 640px) { .counters { grid-template-columns: 1fr 1fr; } }
/* Sayı yerine kelime taşıyan sayaç satırı */
.counters .v { overflow-wrap: anywhere; }
@media (min-width: 641px) { .counters { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); } .counters .v { font-size: clamp(22px, 2.2vw, 30px); } }
@media (max-width: 640px) { .counters .v { font-size: 24px; } }
/* 5 çözüm kartı: üstte 3, altta 2 geniş (boş hücre kalmasın) */
@media (min-width: 1000px) {
  .g-sol { grid-template-columns: repeat(6, 1fr); }
  .g-sol > :nth-child(-n+3) { grid-column: span 2; }
  .g-sol > :nth-child(n+4) { grid-column: span 3; }
}
@media (min-width: 641px) { .counters { grid-template-columns: 1fr 1fr; } }

/* İkonlar (tasarımdaki iç içe kare/daire şekillerinin yerine) */
.ico { width: 60px; height: 60px; flex: none; display: grid; place-items: center; color: var(--accent); background: rgba(156,199,127,.06); border: 1px solid #26331F; transition: background .3s, border-color .3s; }
.ico svg { width: 30px; height: 30px; }
.ico.sm { width: 50px; height: 50px; }
.ico.sm svg { width: 24px; height: 24px; }
.card:hover .ico { background: rgba(156,199,127,.12); border-color: var(--accent-line); }

/* Ekran çizimleri kendi başlığını taşıyor; alt etiket içeriğin üstüne biniyordu */
.media.plain .cap { display: none; }
