:root {
  --ink: #151515;
  --muted: #626262;
  --bg: #f7f7f5;
  --paper: #ffffff;
  --primary: #d71920;
  --primary-2: #ff464d;
  --accent: #111111;
  --soft: #fff0f1;
  --dark: #070707;
  --line: rgba(18, 28, 35, .12);
  --shadow: 0 18px 50px rgba(13, 26, 38, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.skip { position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip:focus { left: 16px; top: 16px; width:auto; height:auto; z-index:20; background:#fff; padding:10px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display:flex; align-items:center; gap:10px; min-width: 180px; text-decoration:none; }
.brand strong { display:block; font-size: 18px; }
.brand small { display:block; color: var(--muted); font-size: 12px; }
.nav { display:flex; align-items:center; justify-content:center; flex:1; gap: 4px; flex-wrap: wrap; }
.nav a { text-decoration:none; padding: 9px 10px; border-radius: 6px; color: var(--muted); font-size: 14px; }
.nav a:hover, .nav a.active { color: var(--ink); background: var(--soft); }
.call-mini { text-decoration:none; background: var(--dark); color:#fff; padding: 10px 14px; border-radius: 6px; white-space: nowrap; font-weight: 700; }
.menu-btn { display:none; min-width:44px; min-height:44px; border:1px solid var(--line); background:#fff; border-radius:6px; font-size:22px; }
.hero {
  min-height: min(760px, 74vh);
  display:flex;
  align-items:center;
  background-size: cover;
  background-position: center;
  color:#fff;
}
.hero-inner { width:min(1120px, calc(100% - 32px)); margin:0 auto; padding: 76px 0 96px; }
.hero-mark { width:96px; height:96px; object-fit:cover; border-radius:50%; border:3px solid rgba(255,255,255,.82); box-shadow:0 14px 34px rgba(0,0,0,.26); margin-bottom:18px; }
.eyebrow { margin:0 0 10px; color: var(--accent); text-transform: uppercase; letter-spacing: 0; font-size: 13px; font-weight: 800; }
.hero h1, .page-hero h1 { margin:0; font-size: clamp(38px, 7vw, 76px); line-height: .98; max-width: 820px; letter-spacing: 0; }
.hero-copy { max-width: 680px; font-size: clamp(18px, 2.1vw, 23px); color: rgba(255,255,255,.90); }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin:26px 0; }
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 800;
  border-radius: 6px;
}
.theme-safir .btn.primary { border-radius: 999px; }
.theme-yildirim .btn.primary { border-radius: 2px; clip-path: polygon(0 0, 94% 0, 100% 50%, 94% 100%, 0 100%); padding-right: 26px; }
.btn.primary { background: var(--primary); color:#fff; }
.btn.secondary { background: var(--accent); color:#111; }
.btn.ghost { border-color: rgba(255,255,255,.65); color:#fff; }
.trust-list { list-style:none; padding:0; margin:18px 0 0; display:flex; gap:10px; flex-wrap:wrap; }
.trust-list li { border:1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.10); padding: 8px 10px; border-radius: 6px; }
.page-hero {
  padding: 78px clamp(16px, 4vw, 48px) 54px;
  background: linear-gradient(135deg, var(--dark), var(--primary));
  color:#fff;
}
.page-hero p:not(.eyebrow) { max-width:760px; color: rgba(255,255,255,.88); font-size: 19px; }
.section, .band, .article {
  width:min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}
.band { padding: 42px 0; }
.alt { background: transparent; }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head.compact { margin-bottom: 18px; }
h2 { font-size: clamp(26px, 4vw, 42px); line-height: 1.1; margin: 0 0 14px; letter-spacing: 0; }
h3 { margin: 0 0 10px; }
p { color: var(--muted); }
.calculator {
  display:grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items:end;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.calculator label { display:grid; gap:6px; font-weight:700; color:var(--ink); }
select, input, textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 112px; resize: vertical; }
.price-output { min-height: 46px; display:flex; align-items:center; padding: 10px 12px; border-radius: 6px; background: var(--soft); font-weight: 800; }
.card-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.item-card, .mini-panel, .check-panel, .contact-box, .review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 8px 26px rgba(13,26,38,.06);
}
.item-card p { min-height: 74px; }
.text-link { color: var(--primary); font-weight: 800; text-decoration: none; }
.two-col { display:grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items:start; }
.feature-list { padding-left: 20px; color: var(--muted); }
.feature-list li { margin: 8px 0; }
.check-panel, .mini-panel { display:grid; gap: 10px; }
.check-panel span, .mini-panel span, .step-grid span { background: var(--soft); border-radius: 6px; padding: 12px; font-weight: 700; }
.table-wrap { overflow-x:auto; }
.price-table { width:100%; border-collapse: collapse; background:#fff; border:1px solid var(--line); border-radius:8px; overflow:hidden; }
.price-table caption { text-align:left; font-weight:800; margin-bottom:10px; }
.price-table th, .price-table td { padding: 13px; border-bottom:1px solid var(--line); text-align:left; }
.price-table thead th { background: var(--soft); }
.link-cloud { display:flex; gap: 8px; flex-wrap:wrap; }
.link-cloud a { text-decoration:none; border:1px solid var(--line); background:#fff; border-radius:6px; padding:8px 10px; font-weight:700; color:var(--muted); }
.link-cloud.big a { padding:10px 12px; }
.step-grid, .review-grid, .process-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.process-section, .reviews-section, .map-section { content-visibility:auto; contain-intrinsic-size: 720px; }
.step-card, .review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 8px 26px rgba(13,26,38,.06);
}
.step-card b { width:40px; height:40px; display:grid; place-items:center; border-radius:50%; background:var(--primary); color:#fff; margin-bottom:12px; }
.stars { color: var(--accent); font-size: 18px; letter-spacing: 0; white-space: nowrap; }
.review-card h3 { font-size: 17px; line-height: 1.25; }
.review-card small { color: var(--muted); font-weight: 800; }
.review-strip { display:flex; gap:12px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:8px; }
.review-strip .review-card { flex:0 0 280px; scroll-snap-align:start; }
.rating-summary {
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:8px;
  padding:14px 16px;
  margin-bottom:18px;
}
.rating-summary strong { font-size: 38px; line-height: 1; color:var(--primary); }
.rating-summary.large { margin-bottom:24px; }
.review-form {
  margin-top:20px;
  display:grid;
  grid-template-columns: 1fr 1fr 160px;
  gap:12px;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:8px;
  padding:18px;
}
.review-form h3, .review-form label:nth-of-type(4), .review-form .btn { grid-column: 1 / -1; }
.review-form label { display:grid; gap:6px; font-weight:800; }
.map-layout { display:grid; grid-template-columns: 1.25fr .75fr; gap:18px; align-items:stretch; }
.map-card {
  position: relative;
  min-height: 340px;
  border-radius:8px;
  border:1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.70) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.70) 1px, transparent 1px),
    radial-gradient(circle at 34% 46%, var(--accent), transparent 16%),
    radial-gradient(circle at 60% 42%, var(--primary-2), transparent 20%),
    linear-gradient(135deg, var(--primary), var(--dark));
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  color:#fff;
  padding:24px;
  display:flex;
  align-content:flex-end;
  align-items:flex-end;
  gap:8px;
  flex-wrap:wrap;
  box-shadow: var(--shadow);
}
.map-card span { position:absolute; width:1px; height:1px; overflow:hidden; }
.map-card b { background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.3); border-radius:6px; padding:8px 10px; }
.map-info { background:var(--paper); border:1px solid var(--line); border-radius:8px; padding:22px; }
.faq details { background:#fff; border:1px solid var(--line); border-radius:8px; padding:16px; margin:10px 0; }
.faq summary { cursor:pointer; font-weight:800; }
.contact-grid { display:grid; grid-template-columns: .75fr 1.25fr; gap: 20px; }
.big-phone { display:block; font-size: clamp(28px, 4vw, 44px); color: var(--primary); font-weight:900; text-decoration:none; }
.lead-form { display:grid; grid-template-columns: 1fr 1fr; gap: 12px; background:#fff; padding:20px; border:1px solid var(--line); border-radius:8px; }
.lead-form label:nth-child(4), .lead-form .btn { grid-column: 1 / -1; }
.article { max-width: 860px; }
.article h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.02; letter-spacing: 0; }
.lead { font-size: 20px; }
.article-cta { margin: 24px 0; }
.site-gallery { content-visibility:auto; contain-intrinsic-size: 520px; }
.gallery-shell { overflow:hidden; border:1px solid var(--line); border-radius:8px; background:var(--paper); box-shadow:0 8px 26px rgba(13,26,38,.06); }
.gallery-rail { display:flex; gap:12px; overflow-x:auto; scroll-snap-type:x mandatory; padding:14px; scrollbar-width:thin; }
.gallery-card { flex:0 0 260px; margin:0; scroll-snap-align:start; border-radius:8px; overflow:hidden; background:var(--soft); border:1px solid var(--line); }
.gallery-card img { width:100%; aspect-ratio:3 / 2; object-fit:cover; display:block; }
.gallery-card figcaption { min-height:44px; display:flex; align-items:center; padding:8px 10px; color:var(--ink); font-size:13px; font-weight:800; }
.site-footer { background: var(--dark); color:#fff; padding: 48px clamp(16px, 4vw, 48px) 24px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.76); }
.footer-grid { display:grid; grid-template-columns: 1.2fr 1fr 1fr .8fr; gap: 24px; width:min(1140px, 100%); margin:0 auto; }
.site-footer a { display:block; text-decoration:none; margin: 6px 0; }
.footer-phone { font-size:24px; font-weight:900; color:#fff !important; }
.fineprint { width:min(1140px, 100%); margin: 28px auto 0; font-size: 13px; }
.sticky-call { position: fixed; right: 14px; bottom: 14px; z-index: 12; background: var(--primary); color:#fff; text-decoration:none; padding: 12px 14px; border-radius: 6px; font-weight:900; box-shadow: var(--shadow); }
@media (max-width: 920px) {
  .menu-btn { display:block; margin-left:auto; }
  .nav { display:none; position:absolute; left:16px; right:16px; top:72px; background:#fff; border:1px solid var(--line); border-radius:8px; padding:10px; box-shadow:var(--shadow); }
  .nav.open { display:grid; grid-template-columns: 1fr 1fr; }
  .call-mini { display:none; }
  .calculator, .card-grid, .two-col, .step-grid, .review-grid, .process-grid, .map-layout, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .review-form { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns:1fr; }
  .hero { min-height: 68vh; }
  .gallery-card { flex-basis: 220px; }
}
@media (max-width: 560px) {
  .hero-inner { padding: 54px 0 70px; }
  .hero h1, .page-hero h1 { font-size: 38px; }
  .nav.open { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .sticky-call { left: 14px; text-align:center; }
}


/* 2026 theme upgrade: Safir */
body {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--primary) 7%, var(--bg)), var(--bg) 520px),
    var(--bg);
}
.site-header {
  background: rgba(255,255,255,.97);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.brand img {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
.brand strong {
  color: var(--dark);
  letter-spacing: 0;
}
.call-mini,
.sticky-call {
  background: linear-gradient(135deg, var(--primary), var(--dark));
}
.hero {
  min-height: min(780px, 78vh);
  position: relative;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0,0,0,.35), transparent);
}
.hero-mark {
  border-radius: 14px;
  border-color: rgba(255,255,255,.9);
}
.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  box-shadow: 0 14px 28px color-mix(in srgb, var(--primary) 25%, transparent);
}
.btn.secondary {
  background: var(--dark);
  color: #fff;
}
.btn.ghost:hover,
.btn.primary:hover,
.btn.secondary:hover {
  transform: translateY(-1px);
}
.item-card:hover,
.step-card:hover,
.review-card:hover {
  border-color: color-mix(in srgb, var(--primary) 42%, var(--line));
  box-shadow: 0 18px 42px rgba(0,0,0,.10);
}
.command-panel {
  width: min(1140px, calc(100% - 32px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 0 36px;
}
.command-shell {
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--primary) 24%, var(--line));
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
  overflow: hidden;
}
.command-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--dark), var(--primary));
}
.command-head p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.82);
}
.command-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.command-card {
  background: #fff;
  padding: 18px;
  min-height: 132px;
}
.command-card strong {
  display: block;
  font-size: 26px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}
.command-card span {
  display: block;
  font-weight: 900;
  color: var(--ink);
}
.command-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.4;
}
.blog-pulse {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 26px rgba(13,26,38,.06);
}
.blog-pulse a {
  display: inline-flex;
  margin: 6px 6px 0 0;
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  background: var(--soft);
  font-weight: 800;
}
.theme-safir .btn.primary {
  border-radius: 6px;
}
.theme-yildirim .btn.primary {
  border-radius: 6px;
  clip-path: none;
  padding-right: 18px;
}
.theme-safir .eyebrow,
.theme-yildirim .eyebrow {
  color: var(--primary);
}
@media (max-width: 920px) {
  .command-head,
  .command-grid {
    grid-template-columns: 1fr;
  }
  .command-panel {
    margin-top: 0;
    padding-top: 18px;
  }
}
