/* ═══════════════════════════════════════════════════════════════════════════
   NEVATEKS — Kurumsal web sitesi · SİYAH-BEYAZ MODERN TEMA (2026-09-25)
   Tek renk paleti (mürekkep siyahı + beyaz + griler), modern grotesk tipografi.
   Harici bağımlılık yalnız Google Fonts.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --ink: #0b0b0c;
  --ink-2: #17171a;
  --muted: #6d6d72;
  --faint: #9a9aa0;
  --line: #e6e6e8;
  --line-2: #d5d5d8;
  --bg: #ffffff;
  --soft: #f5f5f4;
  --soft-2: #eeeeec;
  --wrap: 1240px;
  --disp: "Poppins", -apple-system, "Segoe UI", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: #fff; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
.disp { font-family: var(--disp); }

h1, h2, h3 { font-family: var(--disp); font-weight: 600; letter-spacing: -0.02em; line-height: 1.04; }
.eyebrow {
  font-family: var(--disp); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600; color: var(--ink);
}
.eyebrow.line::before { content: ""; display: inline-block; width: 26px; height: 1px; background: var(--ink); vertical-align: middle; margin-right: 12px; }

.section { padding: 120px 0; }
.section.tight { padding: 92px 0; }
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head h2 { font-size: clamp(30px, 4.6vw, 54px); margin-top: 18px; }
.section-head p { color: var(--muted); font-size: 18px; margin-top: 20px; line-height: 1.6; }

.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  padding: 15px 28px; border-radius: 2px; border: 1px solid var(--ink); transition: .22s ease;
}
.btn .arr { transition: transform .22s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-on-dark { background: #fff; color: var(--ink); border-color: #fff; }
.btn-on-dark:hover { background: transparent; color: #fff; }

/* ─── Header ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent; transition: border-color .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 100px; }
.brand-logo { height: 54px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 42px; }
.nav-links a {
  font-family: var(--disp); font-size: 16px; font-weight: 500; letter-spacing: 0.01em; color: var(--ink-2);
  position: relative; padding: 6px 0;
}
.nav-links a::after { content:""; position:absolute; left:0; bottom:0; width:0; height:1.5px; background: var(--ink); transition: width .28s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 26px; }
.lang-toggle { display: flex; align-items: center; gap: 2px; }
.lang-toggle button {
  border: 0; background: transparent; cursor: pointer; font-family: var(--disp);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: var(--faint); padding: 8px 9px; transition: .2s;
}
.lang-toggle button.active { color: var(--ink); }
.lang-toggle span { color: var(--line-2); }
.menu-btn { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-btn span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ─── Hero ─────────────────────────────────────────────────────────── */
.hero { padding: 116px 0 100px; position: relative; }
.hero-inner { max-width: 1000px; }
.hero .since { font-family: var(--disp); font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-bottom: 30px; display: inline-flex; align-items: center; gap: 12px; }
.hero .since::before { content:""; width: 32px; height: 1px; background: var(--ink); }
.hero h1 { font-size: clamp(36px, 4.8vw, 62px); letter-spacing: -0.015em; font-weight: 600; }
.hero h1 .thin { font-weight: 300; }
.hero .lead { margin-top: 32px; max-width: 640px; font-size: 19px; color: var(--muted); line-height: 1.65; }
.hero-actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { margin-top: 80px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.hero-stats .stat { padding: 30px 26px 0 0; }
.hero-stats .stat .n { font-family: var(--disp); font-size: 42px; font-weight: 600; line-height: 1; letter-spacing: -0.02em; }
.hero-stats .stat .l { margin-top: 10px; font-size: 13px; color: var(--muted); }

/* ─── İki kolon ────────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.top { align-items: start; }
.copy p { color: var(--muted); font-size: 17px; margin-top: 20px; line-height: 1.7; }
.copy p:first-of-type { margin-top: 0; }
.copy h2 { font-size: clamp(30px, 4.4vw, 50px); margin: 16px 0 26px; }

.brand-card { border: 1px solid var(--line); padding: 30px 32px; transition: .25s; background: #fff; }
.brand-card + .brand-card { margin-top: 16px; }
.brand-card:hover { border-color: var(--ink); }
.brand-card .tag { font-family: var(--disp); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.brand-card h3 { font-size: 26px; margin-top: 6px; }
.brand-card p { color: var(--muted); font-size: 15px; margin-top: 10px; }
.valencia-note { margin-top: 20px; display: flex; align-items: center; gap: 16px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted); }
.valencia-note img { height: 24px; width: auto; }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); margin-top: 40px; }
.vm-card { padding: 40px; border-right: 1px solid var(--line); }
.vm-card:last-child { border-right: 0; }
.vm-card .n { font-family: var(--disp); font-size: 13px; letter-spacing: .12em; color: var(--faint); }
.vm-card h3 { font-size: 26px; margin: 12px 0 12px; }
.vm-card p { color: var(--muted); font-size: 15.5px; line-height: 1.7; }

/* ─── Ürünler ──────────────────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; transition: .25s; }
.product:hover { background: var(--soft); }
.product .thumb { aspect-ratio: 4/3; position: relative; overflow: hidden; display: grid; place-items: center; background: var(--soft); border-bottom: 1px solid var(--line); }
.product .thumb::before { content:""; position:absolute; inset:0; background-image: repeating-linear-gradient(0deg, rgba(0,0,0,.045) 0 1px, transparent 1px 8px); }
.product .thumb .no { position: relative; z-index:1; font-family: var(--disp); font-size: 15px; color: var(--faint); }
.product .body { padding: 26px 28px 30px; }
.product h3 { font-size: 22px; }
.product p { color: var(--muted); font-size: 14.5px; margin-top: 8px; line-height: 1.6; }

/* ─── Koyu bölüm ───────────────────────────────────────────────────── */
.dark { background: var(--ink); color: #f2f2f2; }
.dark .eyebrow { color: #fff; }
.dark .eyebrow.line::before { background: #fff; }
.dark .section-head h2 { color: #fff; }
.dark .section-head p { color: #b3b3b7; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.16); }
.pillar { padding: 34px 30px 0 0; }
.pillar .num { font-family: var(--disp); font-size: 14px; color: #7d7d84; }
.pillar h3 { font-size: 26px; color: #fff; margin: 12px 0 12px; }
.pillar p { color: #b3b3b7; font-size: 15px; line-height: 1.7; }

/* ─── Sertifikalar ─────────────────────────────────────────────────── */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); }
.cert { padding: 34px 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; transition: .25s; }
.cert:last-child { border-right: 0; }
.cert:hover { background: var(--soft); }
.cert .std { font-family: var(--disp); font-size: 27px; font-weight: 600; letter-spacing: -0.02em; }
.cert .sys { color: var(--muted); font-size: 14px; margin-top: 6px; flex: 1; }
.cert .meta { margin-top: 20px; font-size: 12px; color: var(--faint); font-family: var(--disp); letter-spacing: .02em; }
.cert .view { margin-top: 16px; font-family: var(--disp); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.cert .view .arr { transition: transform .2s; }
.cert:hover .view .arr { transform: translateX(3px); }
.cert-note { margin-top: 26px; font-size: 13.5px; color: var(--muted); }

.audits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 22px; }
.audit { border: 1px solid var(--line); padding: 26px 28px; background: #fff; }
.audit .st { display: inline-block; font-family: var(--disp); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border: 1px solid var(--line-2); border-radius: 999px; color: var(--muted); }
.audit .st.ok { background: var(--ink); color: #fff; border-color: var(--ink); }
.audit h3 { font-size: 20px; margin: 14px 0 8px; }
.audit p { color: var(--muted); font-size: 14px; }
.audit a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ─── İhracat / kapasite ───────────────────────────────────────────── */
.markets { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.market { font-family: var(--disp); font-size: 14px; font-weight: 500; padding: 10px 20px; border: 1px solid rgba(255,255,255,.28); color: #ececee; transition: .2s; }
.market:hover { background: #fff; color: var(--ink); border-color: #fff; }
.cap-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 44px; border-top: 1px solid rgba(255,255,255,.16); }
.cap { padding: 32px 26px 0 0; }
.cap .n { font-family: var(--disp); font-size: 40px; font-weight: 600; color: #fff; letter-spacing: -0.02em; }
.cap .l { color: #b3b3b7; font-size: 13.5px; margin-top: 8px; }

/* ─── Referanslar ──────────────────────────────────────────────────── */
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.logo-cell { aspect-ratio: 16/10; display: grid; place-items: center; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s; }
.logo-cell:hover { background: var(--soft); }
.logo-cell img { max-height: 52px; max-width: 76%; width: auto; object-fit: contain; opacity: .9; transition: .3s; }
.logo-cell:hover img { opacity: 1; }

/* ─── İletişim ─────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-copy h2 { font-size: clamp(30px, 4.4vw, 50px); }
.contact-copy > p { color: var(--muted); font-size: 18px; margin-top: 18px; max-width: 440px; }
.info-list { margin-top: 34px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.info-row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row .k { font-family: var(--disp); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.info-row .v { font-size: 15.5px; color: var(--ink-2); }
.legal-card { margin-top: 30px; border: 1px solid var(--line); padding: 28px; background: var(--soft); }
.legal-card h4 { font-family: var(--disp); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.legal-card dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 20px; }
.legal-card dt { font-size: 13px; color: var(--muted); font-weight: 600; }
.legal-card dd { font-size: 14px; color: var(--ink-2); }
.map-ph { margin-top: 26px; border: 1px solid var(--line); aspect-ratio: 16/7; display: grid; place-items: center; color: var(--faint); font-size: 14px; text-align: center;
  background-image: repeating-linear-gradient(45deg, var(--soft) 0 12px, #fff 12px 24px); }

.form { border: 1px solid var(--line); padding: 38px; }
.form .field { margin-bottom: 20px; }
.form label { display: block; font-family: var(--disp); font-size: 12px; letter-spacing: .04em; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.form input, .form textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  border: 0; border-bottom: 1.5px solid var(--line-2); padding: 11px 2px; background: transparent; transition: border-color .2s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--ink); }
.form textarea { resize: vertical; min-height: 110px; }
.form .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }

.ph { border-bottom: 1px dashed var(--faint); color: var(--muted); font-style: italic; }
.dark .ph, .site-footer .ph { border-color: rgba(255,255,255,.4); color: #9a9aa0; }

/* ─── İç sayfa başlığı ─────────────────────────────────────────────── */
.page-hero { padding: 84px 0 58px; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { color: var(--muted); }
.page-hero h1 { font-size: clamp(32px, 4.4vw, 54px); margin-top: 16px; letter-spacing: -0.015em; }
.page-hero p { color: var(--muted); font-size: 19px; margin-top: 22px; max-width: 640px; }
.crumb { font-family: var(--disp); font-size: 13px; color: var(--faint); margin-bottom: 18px; }
.crumb a:hover { color: var(--ink); }

/* ─── Footer ───────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: #a9a9af; padding: 104px 0 48px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand img { height: 60px; width: auto; filter: invert(1); }
.footer-brand p { font-size: 15.5px; color: #86868c; margin-top: 20px; max-width: 340px; line-height: 1.65; }
.socials { display: flex; gap: 12px; margin-top: 26px; }
.socials a { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: #cfcfd4; font-family: var(--disp); font-size: 15px; transition: .2s; }
.socials a:hover { background: #fff; color: var(--ink); border-color: #fff; }
.footer-col h4 { font-family: var(--disp); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 22px; }
.footer-col a { display: block; font-size: 16px; color: #a9a9af; padding: 9px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.legal-band { padding: 44px 0; border-bottom: 1px solid rgba(255,255,255,.12); display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 28px 44px; }
.legal-item .k { font-family: var(--disp); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: #86868c; margin-bottom: 7px; }
.legal-item .v { font-size: 15px; color: #cfcfd4; line-height: 1.55; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 34px; font-size: 14px; color: #86868c; }
.footer-legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal-links a:hover { color: #fff; }

/* ─── Çerez bandı ──────────────────────────────────────────────────── */
.cookie { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 90; max-width: 700px; margin: 0 auto;
  background: var(--ink); color: #e6e6e8; padding: 20px 24px; display: flex; align-items: center; gap: 18px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.5); transform: translateY(160%); transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.cookie.show { transform: none; }
.cookie p { font-size: 13.5px; color: #b3b3b7; flex: 1; }
.cookie p a { color: #fff; text-decoration: underline; }
.cookie .btn { padding: 11px 20px; font-size: 13px; white-space: nowrap; }
.cookie .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.cookie .btn-ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.08); }

/* ─── Yasal sayfalar ───────────────────────────────────────────────── */
.legal-page { max-width: 820px; margin: 0 auto; padding: 70px 32px 100px; }
.legal-page h1 { font-size: clamp(32px, 5vw, 54px); margin: 14px 0 8px; letter-spacing: -0.03em; }
.legal-page .updated { color: var(--muted); font-size: 13.5px; margin-bottom: 36px; }
.legal-page h2 { font-size: 24px; margin: 40px 0 12px; }
.legal-page h3 { font-size: 18px; margin: 26px 0 8px; }
.legal-page p, .legal-page li { color: var(--ink-2); font-size: 15.5px; margin-top: 12px; line-height: 1.7; }
.legal-page ul { padding-left: 22px; }
.legal-page a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal-page .warn { background: var(--soft); border-left: 3px solid var(--ink); padding: 16px 22px; font-size: 14px; color: var(--muted); margin: 28px 0; }

/* ─── Reveal ───────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ─── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 18px 32px 26px; gap: 2px; }
  .nav-links.open a { padding: 13px 0; font-size: 17px; border-bottom: 1px solid var(--line); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .products-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars, .cap-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .vm-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .vm-card:last-child { border-bottom: 0; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .audits { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .section { padding: 74px 0; }
  .hero { padding: 80px 0 68px; }
  .products-grid, .cert-grid, .logo-grid { grid-template-columns: 1fr; }
  .cert { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cookie { flex-direction: column; align-items: stretch; text-align: center; }
  .form { padding: 26px; }
}

/* ── İçerik görselleri (stok, gri tonlama — B&W tema) ── */
.product .thumb img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .5s ease; z-index:0; }
.product:hover .thumb img { transform:scale(1.05); }
.product .thumb.has-img::before { display:none; }
.product .thumb.has-img .no { position:absolute; top:10px; left:12px; z-index:2; color:#fff; background:rgba(0,0,0,.5); padding:2px 9px; border-radius:2px; font-size:11px; }
.media-band { border-top:1px solid var(--line); border-bottom:1px solid var(--line); overflow:hidden; }
.media-band img { display:block; width:100%; height:clamp(300px,50vh,560px); object-fit:cover; }

/* ── WhatsApp yüzen buton (klasik, sağ alt sabit) ── */
.wa-float { position:fixed; right:22px; bottom:22px; z-index:120; width:56px; height:56px; border-radius:50%; background:#25D366; display:grid; place-items:center; box-shadow:0 6px 20px rgba(0,0,0,.28); transition:transform .2s ease, box-shadow .2s ease; }
.wa-float:hover { transform:scale(1.08); box-shadow:0 8px 26px rgba(37,211,102,.5); }
.wa-float svg { display:block; }
@media (max-width:600px) { .wa-float { right:16px; bottom:16px; width:52px; height:52px; } }

/* ── Büyük hero banner (renkli görsel + koyu scrim; arayüz B&W) ── */
.hero.hero-banner { padding:0; min-height:94vh; display:flex; align-items:flex-end; position:relative; background:var(--ink); color:#fff; overflow:hidden; }
.hero-banner .hero-bg { position:absolute; inset:0; z-index:0; }
.hero-banner .hero-bg img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-banner .hero-bg::after { content:""; position:absolute; inset:0; background:linear-gradient(100deg, rgba(8,8,10,.84) 0%, rgba(8,8,10,.55) 42%, rgba(8,8,10,.16) 72%, rgba(8,8,10,.4) 100%), linear-gradient(0deg, rgba(8,8,10,.72) 0%, rgba(8,8,10,0) 42%); }
.hero-banner .hero-inner { position:relative; z-index:2; width:100%; padding-top:150px; padding-bottom:56px; }
.hero-banner .since { color:rgba(255,255,255,.82); }
.hero-banner .since::before { background:#fff; }
.hero-banner h1 { color:#fff; }
.hero-banner .lead { color:rgba(255,255,255,.87); }
.hero-banner .hero-stats { margin-top:46px; border-top-color:rgba(255,255,255,.28); }
.hero-banner .hero-stats .stat .n { color:#fff; }
.hero-banner .hero-stats .stat .l { color:rgba(255,255,255,.72); }
.hero-banner .btn-primary { background:#fff; color:var(--ink); }
.hero-banner .btn-primary:hover { background:rgba(255,255,255,.88); }
.hero-banner .btn-ghost { color:#fff; border-color:rgba(255,255,255,.5); }
.hero-banner .btn-ghost:hover { border-color:#fff; background:rgba(255,255,255,.08); }
@media (max-width:768px) { .hero.hero-banner { min-height:86vh; } .hero-banner .hero-inner { padding-top:120px; } }

/* ── Harita gömme ── */
.map-embed { border:1px solid var(--line); overflow:hidden; min-height:340px; height:100%; }
.map-embed iframe { display:block; width:100%; height:100%; min-height:340px; border:0; }
