/* As Yol İnşaat — site stilleri
   Renkler: lacivert (gece asfaltı), sinyal turuncusu, beton kumu. */

:root {
    --navy: #10213a;
    --navy-2: #1a3050;
    --navy-3: #243d62;
    --ink: #0b1627;
    --orange: #f26b1d;
    --orange-d: #d4560b;
    --orange-soft: #fde8da;
    --sand: #f5f1ea;
    --sand-2: #ece5d8;
    --line: #e2dccf;
    --text: #283445;
    --muted: #5f6a7a;
    --white: #fff;
    --wa: #1faa55;
    --radius: 14px;
    --radius-sm: 9px;
    --shadow: 0 10px 30px -12px rgba(16, 33, 58, .25);
    --head: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
    --body: 'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --wrap: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--body);
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--head); color: var(--navy); line-height: 1.08; margin: 0; letter-spacing: .01em; }
p { margin: 0; }
.ic { width: 1.25em; height: 1.25em; flex-shrink: 0; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--orange); color: #fff; padding: 10px 16px; z-index: 100; }
.skip:focus { left: 10px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55em;
    font-weight: 700; font-size: .98rem; line-height: 1;
    padding: .95em 1.4em; border-radius: var(--radius-sm); border: 2px solid transparent;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: var(--orange); color: #fff; }
.btn-accent:hover { background: var(--orange-d); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-3); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #178f47; }
.btn-ghost { border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--navy); }
.btn-lg { font-size: 1.05rem; padding: 1.05em 1.6em; }
.btn-sm { font-size: .88rem; padding: .7em 1.1em; }
.btn-block { width: 100%; }

.eyebrow {
    display: inline-flex; align-items: center; gap: .6em;
    font-family: var(--head); font-weight: 700; font-size: .95rem;
    letter-spacing: .16em; text-transform: uppercase; color: var(--orange-d);
}
.eyebrow::before { content: ''; width: 26px; height: 3px; background: var(--orange); border-radius: 2px; }
.eyebrow--light { color: #ffb37f; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark { width: 46px; height: 46px; }
.logo-text { display: flex; flex-direction: column; font-family: var(--head); line-height: .92; }
.logo-name { font-weight: 800; font-size: 1.72rem; letter-spacing: .02em; color: var(--navy); }
.logo-sub { font-weight: 700; font-size: .8rem; letter-spacing: .42em; color: var(--orange-d); margin-top: 3px; }
.logo--light .logo-name { color: #fff; }
.logo--light .logo-sub { color: #ff9a5c; }

/* ---------- Üst bar & başlık ---------- */
.topbar { background: var(--ink); color: #b9c3d3; font-size: .85rem; }
.topbar-in { display: flex; gap: 28px; align-items: center; min-height: 40px; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item .ic { width: 15px; height: 15px; color: var(--orange); }
.topbar-phone { margin-left: auto; color: #fff; font-weight: 700; }
a.topbar-item:hover { color: #fff; }

.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.97); backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.site-header.is-scrolled { box-shadow: 0 6px 24px -14px rgba(16,33,58,.45); }
.header-in { display: flex; align-items: center; gap: 24px; height: 80px; }
.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a { position: relative; font-weight: 600; font-size: .96rem; padding: 10px 12px; color: var(--navy); border-radius: 8px; }
.main-nav a::after { content: ''; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 3px; border-radius: 2px; background: var(--orange); transform: scaleX(0); transition: transform .2s; transform-origin: left; }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 10px; }
.header-phone-ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--orange-soft); color: var(--orange-d); }
.header-phone small { display: block; font-size: .72rem; color: var(--muted); line-height: 1.1; }
.header-phone strong { display: block; font-family: var(--head); font-size: 1.3rem; color: var(--navy); line-height: 1.1; letter-spacing: .02em; }
.menu-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--navy); place-items: center; }
.menu-toggle .ic { width: 26px; height: 26px; }

/* ---------- Mobil çekmece ---------- */
.drawer { position: fixed; inset: 0; z-index: 90; background: rgba(11,22,39,.55); opacity: 0; transition: opacity .25s; }
.drawer.is-open { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 380px); background: #fff; overflow-y: auto; padding: 18px 20px 30px; transform: translateX(100%); transition: transform .25s; }
.drawer.is-open .drawer-panel { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.drawer-head .logo-mark { width: 40px; height: 40px; }
.drawer-head .logo-name { font-size: 1.5rem; }
.drawer-close { width: 42px; height: 42px; border: 0; border-radius: 10px; background: var(--sand); color: var(--navy); display: grid; place-items: center; }
.drawer-nav { display: flex; flex-direction: column; margin: 10px 0 6px; }
.drawer-nav a { display: flex; justify-content: space-between; align-items: center; padding: 13px 4px; font-family: var(--head); font-weight: 700; font-size: 1.35rem; color: var(--navy); border-bottom: 1px dashed var(--line); text-transform: uppercase; letter-spacing: .03em; }
.drawer-nav a .ic { color: var(--orange); width: 18px; }
.drawer-nav a.is-active { color: var(--orange-d); }
.drawer-label { margin: 18px 0 8px; font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.drawer-services { display: grid; gap: 2px; }
.drawer-services a { display: flex; gap: 10px; align-items: center; padding: 8px 6px; font-size: .92rem; font-weight: 500; border-radius: 8px; }
.drawer-services a:hover { background: var(--sand); }
.drawer-services .ic { color: var(--orange); width: 18px; height: 18px; }
.drawer-contact { display: grid; gap: 10px; margin-top: 22px; }
.drawer-contact p { display: flex; gap: 8px; font-size: .85rem; color: var(--muted); }
.drawer-contact p .ic { color: var(--orange); }

/* ---------- Hero (anasayfa) ---------- */
.hero { position: relative; background: var(--sand); overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(16,33,58,.07) 1.2px, transparent 1.2px); background-size: 18px 18px; }
.hero-in { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; padding: 72px 20px 88px; }
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.5rem); font-weight: 800; text-transform: uppercase; margin: 18px 0 20px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-lead { font-size: 1.12rem; color: var(--muted); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; font-size: .9rem; font-weight: 600; color: var(--navy); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .ic { color: var(--orange); }

.layers-card { position: relative; background: var(--navy); border-radius: 22px; padding: 26px; color: #fff; box-shadow: var(--shadow); }
.layers-card::after { content: ''; position: absolute; right: -14px; top: 30px; bottom: 30px; width: 14px; border-radius: 0 10px 10px 0; background: repeating-linear-gradient(180deg, var(--orange) 0 22px, transparent 22px 36px); }
.layers-title { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.layers-title h2 { color: #fff; font-size: 1.45rem; text-transform: uppercase; }
.layers-title span { font-size: .8rem; color: #9fb0c8; }
.layer { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 10px; margin-bottom: 8px; font-weight: 600; font-size: .95rem; }
.layer small { font-weight: 500; font-size: .78rem; opacity: .8; display: block; }
.layer b { font-family: var(--head); font-size: 1.2rem; }
.layer-1 { background: #2b2f36; background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1.4px); background-size: 7px 7px; min-height: 56px; }
.layer-2 { background: #3b3f46; background-image: radial-gradient(rgba(255,255,255,.18) 1.4px, transparent 1.8px); background-size: 10px 10px; min-height: 66px; }
.layer-3 { background: #8a7a62; background-image: radial-gradient(rgba(0,0,0,.18) 2px, transparent 2.4px); background-size: 13px 13px; min-height: 76px; }
.layer-4 { background: #a79270; background-image: radial-gradient(rgba(0,0,0,.14) 2.6px, transparent 3px); background-size: 17px 17px; min-height: 84px; margin-bottom: 0; }
.layers-foot { margin-top: 16px; font-size: .82rem; color: #9fb0c8; }

.stats-strip { position: relative; margin-top: -44px; z-index: 2; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.stat { padding: 24px 26px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: var(--head); font-size: 2.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat b span { color: var(--orange); }
.stat p { margin-top: 6px; font-size: .9rem; color: var(--muted); }

/* ---------- Bölümler ---------- */
.section { padding: 88px 0; }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); color: #c9d3e2; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); text-transform: uppercase; margin-top: 10px; }
.section-head p { max-width: 520px; color: var(--muted); margin-top: 12px; }
.section--navy .section-head p { color: #a9b6c9; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--navy); border-bottom: 2px solid var(--orange); padding-bottom: 3px; white-space: nowrap; }
.link-arrow .ic { width: 18px; transition: transform .2s; }
.link-arrow:hover .ic { transform: translateX(3px); }
.section--navy .link-arrow { color: #fff; }

/* Hizmet kartları */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px 22px; transition: border-color .2s, box-shadow .2s, transform .2s; overflow: hidden; }
.svc-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-3px); }
.svc-no { position: absolute; top: 14px; right: 20px; font-family: var(--head); font-weight: 800; font-size: 2.6rem; color: var(--sand-2); line-height: 1; }
.svc-ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 12px; background: var(--navy); color: var(--orange); transition: background .2s, color .2s; }
.svc-ic .ic { width: 27px; height: 27px; }
.svc-card:hover .svc-ic { background: var(--orange); color: #fff; }
.svc-card h3 { font-size: 1.45rem; margin: 18px 0 8px; text-transform: uppercase; }
.svc-card p { font-size: .94rem; color: var(--muted); flex: 1; }
.svc-card .more { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .9rem; color: var(--orange-d); }
.svc-card .more .ic { width: 17px; }

.svc-card--cta { grid-column: span 2; background: var(--orange); border-color: var(--orange); }
.svc-card--cta h3, .svc-card--cta p, .svc-card--cta .more { color: #fff; }
.svc-card--cta .svc-ic, .svc-card--cta:hover .svc-ic { background: #fff; color: var(--wa); }
.svc-card--cta:hover { border-color: var(--orange-d); }
@media (max-width: 960px) { .svc-card--cta { grid-column: span 1; } }
@media (max-width: 960px) and (min-width: 768px) { .svc-card--cta { grid-column: span 2; } }

/* Süreç */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 28px 22px 24px; background: var(--navy-2); border-radius: var(--radius); border-top: 4px solid var(--orange); }
.step::before { counter-increment: step; content: '0' counter(step); display: block; font-family: var(--head); font-weight: 800; font-size: 2.8rem; color: var(--orange); line-height: 1; margin-bottom: 12px; }
.step h3 { font-size: 1.35rem; text-transform: uppercase; margin-bottom: 8px; }
.step p { font-size: .93rem; color: #a9b6c9; }

/* İki sütun */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); text-transform: uppercase; margin: 10px 0 18px; }
.split p { color: var(--muted); }
.ticks { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.ticks .ic { flex-shrink: 0; width: 24px; height: 24px; padding: 3px; border-radius: 50%; background: var(--orange); color: #fff; margin-top: 1px; }

.fleet-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.fleet-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.fleet-tile .ic { width: 30px; height: 30px; color: var(--orange); }
.fleet-tile b { display: block; margin-top: 12px; font-family: var(--head); font-size: 1.35rem; color: var(--navy); text-transform: uppercase; line-height: 1.1; }
.fleet-tile span { font-size: .88rem; color: var(--muted); }
.fleet-tile--dark { background: var(--navy); border-color: var(--navy); }
.fleet-tile--dark b { color: #fff; }
.fleet-tile--dark span { color: #a9b6c9; }

/* Bölgeler */
.districts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.districts span { font-size: .88rem; font-weight: 600; padding: 7px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--navy); }

/* Blog kartları */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.post-card-body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.post-meta { display: flex; gap: 14px; font-size: .8rem; font-weight: 600; color: var(--muted); }
.post-card h3 { font-family: var(--body); font-weight: 700; font-size: 1.1rem; line-height: 1.35; letter-spacing: 0; margin: 10px 0 8px; }
.post-card p { font-size: .92rem; color: var(--muted); flex: 1; }
.post-card .more { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .88rem; color: var(--orange-d); }
.post-card .more .ic { width: 16px; }

.cover { position: relative; aspect-ratio: 16 / 8; display: flex; align-items: flex-end; justify-content: space-between; padding: 16px 18px; overflow: hidden; }
.cover-ic { position: relative; z-index: 1; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; }
.cover-ic .ic { width: 30px; height: 30px; }
.cover-tag { position: relative; z-index: 1; font-family: var(--head); font-weight: 700; font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; padding: 5px 11px; border-radius: 6px; }
.cover::before { content: ''; position: absolute; inset: 0; opacity: .5; }
.cover::after { content: ''; position: absolute; left: 0; right: 0; top: 46%; height: 5px; background: repeating-linear-gradient(90deg, currentColor 0 34px, transparent 34px 58px); opacity: .55; }
.tone-navy   { background: var(--navy); color: var(--orange); }
.tone-navy .cover-ic { background: var(--orange); color: #fff; }
.tone-navy .cover-tag { background: rgba(255,255,255,.1); color: #fff; }
.tone-orange { background: var(--orange); color: #fff; }
.tone-orange .cover-ic { background: var(--navy); color: #fff; }
.tone-orange .cover-tag { background: rgba(16,33,58,.18); color: #fff; }
.tone-slate  { background: #33445e; color: #c9d3e2; }
.tone-slate .cover-ic { background: #fff; color: var(--navy); }
.tone-slate .cover-tag { background: rgba(255,255,255,.12); color: #fff; }
.tone-sand   { background: var(--sand-2); color: var(--navy); }
.tone-sand .cover-ic { background: var(--navy); color: var(--orange); }
.tone-sand .cover-tag { background: #fff; color: var(--navy); }
.pat-lanes::before { background: repeating-linear-gradient(115deg, transparent 0 40px, rgba(255,255,255,.08) 40px 42px); }
.pat-grid::before  { background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 22px 22px; }
.pat-diag::before  { background: repeating-linear-gradient(45deg, rgba(0,0,0,.06) 0 12px, transparent 12px 24px); }
.pat-dots::before  { background-image: radial-gradient(rgba(255,255,255,.2) 1.6px, transparent 2px); background-size: 14px 14px; }
.tone-sand.pat-grid::before, .tone-sand.pat-lanes::before, .tone-sand.pat-dots::before { filter: invert(1); opacity: .25; }

/* SSS */
.faq { display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 18px 20px; font-weight: 700; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { flex-shrink: 0; width: 22px; height: 22px; color: var(--orange); transition: transform .2s; }
.faq details[open] summary .ic { transform: rotate(45deg); }
.faq details p { padding: 0 20px 18px; color: var(--muted); }

/* ---------- Sayfa başlığı ---------- */
.page-hero { position: relative; background: var(--navy); color: #c9d3e2; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, transparent 0 60px, rgba(255,255,255,.035) 60px 62px); }
.page-hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: repeating-linear-gradient(90deg, var(--orange) 0 48px, transparent 48px 80px); }
.page-hero-in { position: relative; padding: 56px 20px 64px; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.8vw, 3.8rem); text-transform: uppercase; max-width: 900px; margin-top: 14px; }
.page-hero p.lead { margin-top: 16px; max-width: 700px; font-size: 1.08rem; color: #b2bfd2; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: #8fa0b8; }
.crumbs a:hover { color: #fff; }
.crumbs span[aria-hidden] { color: var(--orange); }
.page-hero .post-meta { color: #b2bfd2; margin-top: 18px; }
.page-hero-ic { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 14px; background: var(--orange); color: #fff; margin-top: 22px; }
.page-hero-ic .ic { width: 32px; height: 32px; }

/* ---------- İçerik düzeni ---------- */
.layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 48px; padding: 56px 0 80px; align-items: start; }
.sidebar { position: sticky; top: 104px; display: grid; gap: 18px; }
.side-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; }
.side-box h2 { font-size: 1.3rem; text-transform: uppercase; margin-bottom: 12px; }
.side-box--navy { background: var(--navy); border-color: var(--navy); color: #b2bfd2; }
.side-box--navy h2 { color: #fff; }
.side-box--navy p { font-size: .92rem; margin-bottom: 16px; }
.side-box--navy .btn + .btn { margin-top: 10px; }
.side-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.side-list a { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px; font-size: .92rem; font-weight: 600; color: var(--text); }
.side-list a .ic { color: var(--orange); width: 18px; height: 18px; }
.side-list a:hover { background: var(--sand); }
.side-list a.is-current { background: var(--orange-soft); color: var(--orange-d); }
.side-posts { display: grid; gap: 14px; }
.side-posts a { display: block; }
.side-posts small { font-size: .78rem; color: var(--muted); font-weight: 600; }
.side-posts b { display: block; font-size: .95rem; line-height: 1.35; color: var(--navy); }
.side-posts a:hover b { color: var(--orange-d); }

.highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 36px; }
.highlights div { display: flex; gap: 10px; align-items: center; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--sand); font-weight: 600; font-size: .95rem; color: var(--navy); }
.highlights .ic { color: var(--orange); }

.inline-cta { margin-top: 44px; border-radius: var(--radius); background: var(--orange); color: #fff; padding: 28px; display: flex; gap: 20px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.inline-cta h2 { color: #fff; font-size: 1.7rem; text-transform: uppercase; }
.inline-cta p { opacity: .92; margin-top: 4px; }
.inline-cta .btn-dark { background: var(--navy); }

.block-title { font-size: 2rem; text-transform: uppercase; margin: 52px 0 18px; }

/* ---------- Makale tipografisi ---------- */
.article { min-width: 0; font-size: 1.04rem; }
.article > *:first-child { margin-top: 0; }
.article h2 { font-size: 2rem; text-transform: uppercase; margin: 44px 0 14px; padding-left: 16px; border-left: 5px solid var(--orange); }
.article h3 { font-family: var(--body); font-weight: 700; font-size: 1.22rem; letter-spacing: 0; line-height: 1.3; margin: 30px 0 10px; }
.article p { margin: 0 0 18px; }
.article a { color: var(--navy); font-weight: 700; text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.article a:hover { color: var(--orange-d); }
.article strong { color: var(--navy); }
.article ul { list-style: none; padding: 0; margin: 8px 0 24px; display: grid; gap: 9px; }
.article ul > li { position: relative; padding-left: 30px; }
.article ul > li::before { content: ''; position: absolute; left: 4px; top: .5em; width: 12px; height: 12px; border: 3px solid var(--orange); border-radius: 3px; transform: rotate(45deg); }
.article ol { list-style: none; padding: 0; margin: 8px 0 24px; display: grid; gap: 12px; counter-reset: li; }
.article ol > li { position: relative; padding-left: 46px; counter-increment: li; }
.article ol > li::before { content: counter(li); position: absolute; left: 0; top: -1px; width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--head); font-weight: 700; font-size: 1.05rem; display: grid; place-items: center; }
.article blockquote { margin: 30px 0; padding: 22px 26px; background: var(--sand); border-radius: var(--radius); position: relative; font-size: 1.08rem; font-weight: 500; color: var(--navy); }
.article blockquote::before { content: '“'; position: absolute; top: -18px; left: 18px; font-family: Georgia, serif; font-size: 4.2rem; color: var(--orange); line-height: 1; }
.article blockquote p:last-child { margin-bottom: 0; }
.article .table-wrap { margin: 28px 0; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); max-width: 100%; }
.article table { width: 100%; border-collapse: collapse; font-size: .94rem; }
.article th { background: var(--navy); color: #fff; text-align: left; padding: 12px 16px; font-weight: 700; white-space: nowrap; }
.article td { padding: 12px 16px; border-top: 1px solid var(--line); vertical-align: top; }
.article tbody tr:nth-child(even) td { background: #faf8f4; }
.article td:first-child { font-weight: 700; color: var(--navy); }
.article .note { margin: 30px 0; padding: 22px 24px 22px 26px; border-radius: var(--radius); background: var(--orange-soft); border-left: 6px solid var(--orange); }
.article .note h4 { font-size: 1.15rem; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-d); margin-bottom: 6px; }
.article .note p { margin: 0; }
.article .checklist { margin: 26px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.article .checklist > div { position: relative; padding: 13px 14px 13px 46px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: .95rem; }
.article .checklist > div::before { content: ''; position: absolute; left: 14px; top: 14px; width: 20px; height: 20px; border-radius: 50%; background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f26b1d'%3E%3Cpath d='m9.5 16.2-4-4L4 13.7l5.5 5.5 11-11-1.5-1.4-9.5 9.4Z'/%3E%3C/svg%3E") center / 14px no-repeat; }
.article .cards { margin: 26px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.article .cards > div { padding: 20px; border-radius: var(--radius); background: var(--navy); color: #b2bfd2; }
.article .cards h4 { color: #fff; font-size: 1.3rem; text-transform: uppercase; margin-bottom: 6px; }
.article .cards p { margin: 0; font-size: .94rem; }
.article .cards strong { color: #fff; }
.article .qa { margin: 18px 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.article .qa > h3 { margin: 0; padding: 14px 20px; background: var(--sand); font-size: 1.08rem; }
.article .qa > p { margin: 0; padding: 12px 20px 0; }
.article .qa > p:last-child { padding-bottom: 16px; }
.article .qa b { display: inline-block; margin-right: 6px; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-d); }
.article img { max-width: 100%; height: auto; border-radius: var(--radius); }

/* ---------- Listeleme sayfaları ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filters button { border: 1px solid var(--line); background: #fff; color: var(--navy); padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: .88rem; }
.filters button.is-active, .filters button:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

.svc-rows { display: grid; gap: 14px; }
.svc-row { display: grid; grid-template-columns: 70px 1fr auto; gap: 22px; align-items: center; padding: 22px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s, box-shadow .2s; }
.svc-row:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.svc-row .svc-ic { width: 64px; height: 64px; }
.svc-row h2 { font-size: 1.6rem; text-transform: uppercase; }
.svc-row p { color: var(--muted); font-size: .95rem; margin-top: 4px; }
.svc-row .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.svc-row .tags span { font-size: .78rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: var(--sand); color: var(--navy); }
.svc-row-go { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--line); color: var(--navy); transition: all .2s; }
.svc-row:hover .svc-row-go { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; padding: 56px 0 80px; }
.contact-cards { display: grid; gap: 14px; align-content: start; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.contact-card-ic { flex-shrink: 0; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 12px; background: var(--navy); color: var(--orange); }
.contact-card-ic.is-wa { background: var(--wa); color: #fff; }
.contact-card h2 { font-size: 1.2rem; text-transform: uppercase; color: var(--muted); letter-spacing: .06em; }
.contact-card strong { display: block; font-family: var(--head); font-size: 1.6rem; color: var(--navy); line-height: 1.15; margin-top: 2px; }
.contact-card address { font-style: normal; font-weight: 600; color: var(--navy); margin-top: 4px; }
.contact-card small { display: block; color: var(--muted); margin-top: 4px; }
a.contact-card:hover { border-color: var(--orange); }
.form-card { background: var(--sand); border-radius: var(--radius); padding: 30px; }
.form-card h2 { font-size: 2rem; text-transform: uppercase; }
.form-card > p { color: var(--muted); margin: 6px 0 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-weight: 600; font-size: .88rem; color: var(--navy); }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 1rem; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--text); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-soft); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 10px; }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 32px; }
.map iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- 404 ---------- */
.nf-code { font-family: var(--head); font-weight: 800; font-size: clamp(5rem, 14vw, 9rem); line-height: .9; color: var(--orange); }

/* ---------- CTA bandı & footer ---------- */
.cta-band { background: var(--orange); color: #fff; }
.cta-band-in { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-top: 52px; padding-bottom: 52px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); text-transform: uppercase; margin: 8px 0 8px; max-width: 640px; }
.cta-band p { max-width: 600px; opacity: .95; }
.cta-band .eyebrow--light { color: #fff; }
.cta-band .eyebrow--light::before { background: #fff; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band .btn-wa { background: var(--navy); }
.cta-band .btn-wa:hover { background: var(--ink); }

.site-footer { background: var(--ink); color: #97a5ba; font-size: .93rem; }
.lane-line { height: 6px; background: repeating-linear-gradient(90deg, #fff 0 44px, transparent 44px 76px); opacity: .12; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1.2fr .8fr 1.1fr; gap: 40px; padding-top: 56px; padding-bottom: 48px; }
.footer-about p { margin: 18px 0 20px; max-width: 340px; }
.site-footer h3 { color: #fff; font-size: 1.25rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer a:hover { color: #fff; }
.footer-more { color: var(--orange) !important; font-weight: 700; }
.footer-contact a, .footer-contact span { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .ic { color: var(--orange); margin-top: 3px; width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-in { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 18px; padding-bottom: 18px; font-size: .85rem; }

.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 50; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px -8px rgba(0,0,0,.45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float .ic { width: 32px; height: 32px; }
.bottom-nav { display: none; }

/* ---------- Duyarlı düzen ---------- */
@media (max-width: 1120px) {
    .header-phone { display: none; }
    .main-nav a { padding: 10px 9px; font-size: .92rem; }
}
@media (max-width: 960px) {
    .topbar-item:nth-child(2) { display: none; }
    .main-nav, .header-cta { display: none; }
    .menu-toggle { display: grid; }
    .header-in { height: 68px; }
    .logo-mark { width: 40px; height: 40px; }
    .logo-name { font-size: 1.5rem; }
    .hero-in { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; }
    .layers-card { max-width: 520px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(3) { border-left: 0; }
    .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
    .svc-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 36px; }
    .layout { grid-template-columns: 1fr; gap: 36px; }
    .sidebar { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 68px 0; }
}
@media (max-width: 767px) {
    body { padding-bottom: 68px; font-size: 16px; }
    .wrap { padding: 0 16px; }
    .topbar-item:first-child { display: none; }
    .topbar-phone { margin: 0 auto; }
    .wa-float { display: none; }
    .bottom-nav {
        display: grid; grid-template-columns: repeat(5, 1fr); align-items: end;
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; height: 64px;
        background: var(--navy); border-top: 3px solid var(--orange);
        padding-bottom: env(safe-area-inset-bottom);
    }
    .bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 9px 0 8px; color: #a9b6c9; font-size: .68rem; font-weight: 600; }
    .bottom-nav a .ic { width: 22px; height: 22px; }
    .bottom-nav a.is-active { color: var(--orange); }
    .bottom-nav-wa { color: #fff !important; }
    .bottom-nav-bubble { display: grid; place-items: center; width: 54px; height: 54px; margin-top: -26px; border-radius: 50%; background: var(--wa); color: #fff; box-shadow: 0 0 0 4px var(--navy); }
    .bottom-nav-bubble .ic { width: 28px !important; height: 28px !important; }
    .hero-in { padding: 36px 16px 76px; }
    .hero-actions .btn { flex: 1 1 100%; }
    .layers-card { padding: 20px; }
    .layers-card::after { display: none; }
    .stat { padding: 18px; }
    .stat b { font-size: 2rem; }
    .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 30px; }
    .svc-grid, .post-grid, .steps, .fleet-tiles { grid-template-columns: 1fr; }
    .highlights, .article .checklist, .article .cards { grid-template-columns: 1fr; }
    .svc-row { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
    .svc-row-go { display: none; }
    .article h2 { font-size: 1.7rem; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 22px 18px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .cta-band-actions { width: 100%; }
    .cta-band-actions .btn { flex: 1 1 100%; }
    .inline-cta .btn { width: 100%; }
    .map iframe { height: 300px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
