/* ═══════════════════════════════════════════════════════════════
   Can Prefabrik — Çelik Yapı Sistemleri
   Desen : Trust & Authority + Conversion
   Renk  : logodan lacivert #1e3f77 + yeşil #57a04c, grafit zemin
   Not   : Fotoğraf yok; görsel ağırlık SVG teknik çizim ve
           tipografi hiyerarşisiyle kuruluyor.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Yüzeyler */
  --ink:        #0f1319;
  --ink-2:      #161b23;
  --steel:      #1b2029;
  --steel-2:    #232a35;
  --ink-soft:   #414a57;
  --ink-mute:   #6c7686;
  --line:       #dfe3e9;
  --line-soft:  #edf0f4;
  --paper:      #ffffff;
  --paper-2:    #f5f7fa;

  /* Marka */
  --brand:      #1e3f77;
  --brand-dark: #142b53;
  --brand-lift: #2a548f;
  --brand-soft: #eef2fa;
  --brand-tint: #92b2e4;

  --green:      #57a04c;
  --green-dark: #3d7935;
  --green-soft: #eff7ed;

  --wa:         #128c7e;
  --danger:     #b91c1c;

  /* Ölçek — 4/8 ritmi */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px;
  --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;

  --r-sm: 4px; --r: 8px; --r-lg: 14px; --r-xl: 22px;

  --sh-1: 0 1px 2px rgba(15,19,25,.05), 0 2px 8px rgba(15,19,25,.05);
  --sh-2: 0 2px 4px rgba(15,19,25,.06), 0 10px 28px rgba(15,19,25,.09);
  --sh-3: 0 4px 10px rgba(15,19,25,.08), 0 24px 60px rgba(15,19,25,.16);
  --sh-brand: 0 8px 26px rgba(30,63,119,.28);

  --wrap: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --head: "Lexend", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--head);
  margin: 0 0 .5em;
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 700;
}
h1 { font-size: clamp(2.05rem, 5.4vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.9vw, 2.5rem); }
h3 { font-size: 1.16rem; letter-spacing: -.015em; }
p  { margin: 0 0 1em; }

::selection { background: var(--brand); color: #fff; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-left: 20px; padding-right: 20px; }
.narrow { max-width: 880px; }

.section { padding: var(--s8) 0; position: relative; }
.section--muted { background: var(--paper-2); }
.section--dark  { background: var(--steel); color: #e8ecf1; }
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--head);
  font-size: .73rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand); margin-bottom: var(--s3);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--green); }
.section--dark .eyebrow { color: var(--green); }
.section--dark .eyebrow::before { background: var(--green); }

.lead { font-size: 1.09rem; color: var(--ink-soft); max-width: 58ch; }
.section--dark .lead { color: #b3bcc9; }

/* ─────────────────────────────────────────────── Üst bar */
.topbar {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.5) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.topbar.is-stuck { border-bottom-color: var(--line); box-shadow: var(--sh-1); }
.topbar__in { display: flex; align-items: center; gap: var(--s4); min-height: 72px; }

.brand { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.brand__logo { height: 44px; width: auto; }

.topnav { display: none; gap: var(--s5); }
.topnav a {
  position: relative;
  font-family: var(--head);
  text-decoration: none; font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  padding: 8px 0;
}
.topnav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 2px; background: var(--green); transition: right .28s var(--ease);
}
.topnav a:hover { color: var(--ink); }
.topnav a:hover::after, .topnav a[aria-current="page"]::after { right: 0; }
.topnav a[aria-current="page"] { color: var(--brand); font-weight: 600; }

.topcall { display: none; align-items: center; gap: 10px; text-decoration: none; }
.topcall__ico {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); border-radius: 50%;
}
.topcall__ico svg { width: 19px; height: 19px; }
.topcall b { font-family: var(--head); font-size: 1.02rem; letter-spacing: -.02em; display: block; }
.topcall small { font-size: .7rem; font-weight: 600; color: var(--ink-mute); letter-spacing: .05em; text-transform: uppercase; }

/* ─────────────────────────────────────────────── Butonlar */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 13px 26px;
  border: 1.5px solid transparent; border-radius: var(--r);
  font-family: var(--head); font-weight: 600; font-size: 1rem; letter-spacing: -.01em;
  text-decoration: none; cursor: pointer;
  transition: background .2s var(--ease), border-color .2s, color .2s, box-shadow .25s, transform .12s;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--sh-brand); }
.btn--primary:hover { background: var(--brand-lift); box-shadow: 0 10px 32px rgba(30,63,119,.36); }
.btn--green { background: var(--green); color: #fff; box-shadow: 0 8px 24px rgba(87,160,76,.3); }
.btn--green:hover { background: var(--green-dark); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { filter: brightness(.92); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink-mute); background: var(--paper-2); }
.btn--onDark { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--onDark:hover { background: rgba(255,255,255,.18); }
.btn--lg { min-height: 56px; padding: 16px 32px; font-size: 1.06rem; }
.btn--block { width: 100%; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--green); outline-offset: 2px; border-radius: var(--r-sm);
}

/* ─────────────────────────────────────────────── Hero */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink);
  color: #fff;
}
/* Teknik çizim zemini — çelik projeye göndermeli, ucuz gradyan değil */
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(146,178,228,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(146,178,228,.07) 1px, transparent 1px),
    linear-gradient(rgba(146,178,228,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(146,178,228,.14) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px, 140px 140px, 140px 140px;
  mask-image: radial-gradient(ellipse 90% 75% at 68% 45%, #000 20%, transparent 78%);
}
.hero__glow {
  position: absolute; width: 620px; height: 620px; right: -140px; top: -180px;
  background: radial-gradient(circle, rgba(30,63,119,.55), transparent 66%);
  filter: blur(10px); pointer-events: none;
}
.hero__photo { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .2; }

.hero__in {
  position: relative; z-index: 2;
  display: grid; gap: var(--s7);
  padding: var(--s8) 0 var(--s9);
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 8px 7px 14px; margin-bottom: var(--s4);
  background: rgba(87,160,76,.13); border: 1px solid rgba(87,160,76,.34);
  border-radius: 100px; font-size: .84rem; font-weight: 600; color: #b7e0ae;
}
.hero__badge b { font-family: var(--head); color: #fff; font-weight: 700; }
.hero__badge span {
  background: var(--green); color: #fff; padding: 3px 10px; border-radius: 100px;
  font-size: .74rem; font-weight: 700; letter-spacing: .02em;
}

.hero h1 { color: #fff; margin-bottom: var(--s4); text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--brand-tint); }
.hero__sub { font-size: 1.14rem; color: #aab4c2; max-width: 48ch; margin-bottom: var(--s5); }

.chips { display: flex; flex-wrap: wrap; gap: var(--s2); margin: 0 0 var(--s5); padding: 0; list-style: none; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px;
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13);
  border-radius: 100px; font-size: .855rem; font-weight: 600; color: #dde3ea;
}
.chip svg { width: 16px; height: 16px; flex: none; color: var(--green); }

.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s3); }
.hero__note { margin: var(--s4) 0 0; font-size: .875rem; color: #78828f; }
.hero__note b { color: #b9c2cd; }

/* Kendini çizen izometrik çelik iskelet */
.frame-art { position: relative; }
.frame-art svg { width: 100%; height: auto; overflow: visible; }
.frame-art .fr-draw {
  stroke-dasharray: var(--len, 900); stroke-dashoffset: var(--len, 900);
  animation: frDraw 2.4s var(--ease) forwards;
}
.frame-art .fr-fill { opacity: 0; animation: frFade .8s var(--ease) forwards 1.5s; }
.frame-art .fr-tag  { opacity: 0; animation: frFade .6s var(--ease) forwards 2.2s; }
@keyframes frDraw { to { stroke-dashoffset: 0; } }
@keyframes frFade { to { opacity: 1; } }

.scrollcue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 3; display: none; color: rgba(255,255,255,.4);
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,7px); } }

/* ─────────────────────────────────────────────── İstatistik şeridi */
.stats {
  position: relative; z-index: 3; margin-top: calc(var(--s7) * -1);
  display: grid; grid-template-columns: repeat(2, 1fr);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-3); overflow: hidden;
}
.stat { padding: var(--s5) var(--s4); text-align: center; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.stat:nth-child(2n) { border-right: 0; }
.stat:nth-last-child(-n+2) { border-bottom: 0; }
.stat__n {
  font-family: var(--head); font-size: clamp(1.6rem, 4.5vw, 2.1rem);
  font-weight: 800; letter-spacing: -.04em; color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.stat__l { font-size: .78rem; font-weight: 600; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .08em; }

/* ─────────────────────────────────────────────── Fiyat */
.pricegrid { display: grid; gap: var(--s4); grid-template-columns: 1fr; margin-bottom: var(--s6); }
.pricecard {
  position: relative; padding: var(--s5);
  border: 1.5px solid var(--line); border-radius: var(--r-lg); background: var(--paper);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.pricecard:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.pricecard--hl { border-color: var(--brand); background: linear-gradient(180deg, var(--brand-soft), #fff 62%); }
.pricecard--hl::before {
  content: "En çok tercih edilen";
  position: absolute; top: -11px; left: var(--s5);
  background: var(--brand); color: #fff;
  font-family: var(--head); font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.pricecard__t { font-family: var(--head); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); }
.pricecard__v {
  display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; margin: var(--s2) 0 var(--s1);
  font-family: var(--head); font-weight: 800; letter-spacing: -.045em;
  font-size: clamp(1.85rem, 5.2vw, 2.4rem); color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.pricecard__v small { font-size: .92rem; font-weight: 600; color: var(--ink-mute); letter-spacing: 0; }
.pricecard__n { font-size: .88rem; color: var(--ink-soft); }
.pricecard__n b { color: var(--brand); font-variant-numeric: tabular-nums; }

/* Dahil olanlar — ikon ızgarası */
.inclgrid { display: grid; gap: 1px; grid-template-columns: 1fr; background: var(--line-soft);
  border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; margin-bottom: var(--s6); }
.incl {
  display: flex; align-items: center; gap: var(--s3);
  padding: var(--s4); background: var(--paper);
  transition: background .2s;
}
.incl:hover { background: var(--green-soft); }
.incl__ico {
  width: 38px; height: 38px; flex: none; display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-dark); border-radius: var(--r-sm);
}
.incl__ico svg { width: 20px; height: 20px; }
.incl b { font-family: var(--head); font-size: .95rem; font-weight: 600; display: block; line-height: 1.3; }
.incl span { font-size: .8rem; color: var(--ink-mute); }

/* Karşılaştırma */
.vs { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.vs__head { display: grid; grid-template-columns: 1.25fr 1fr 1fr; background: var(--ink); color: #fff; }
.vs__head > * { padding: var(--s4) var(--s3); font-family: var(--head); font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-align: center; }
.vs__head > *:first-child { text-align: left; }
.vs__us { background: var(--brand); }
.vs__row { display: grid; grid-template-columns: 1.25fr 1fr 1fr; border-top: 1px solid var(--line-soft); }
.vs__row > * { padding: var(--s3); display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.vs__row > *:first-child { justify-content: flex-start; font-weight: 600; text-align: left; }
.vs__row:nth-child(even) { background: var(--paper-2); }
.vs__yes { color: var(--green-dark); }
.vs__no  { color: var(--danger); }
.vs__row svg { width: 20px; height: 20px; }
.vs__cell-note { font-size: .78rem; color: var(--ink-mute); }

/* Hesaplayıcı */
.calc {
  border: 1.5px solid var(--brand); border-radius: var(--r-lg);
  background: var(--paper); padding: var(--s5); box-shadow: var(--sh-2);
}
.calc h3 { margin-bottom: 2px; }
.calc__note { font-size: .88rem; color: var(--ink-mute); margin-bottom: var(--s4); }
.calc__row { display: grid; gap: var(--s4); grid-template-columns: 1fr; margin-bottom: var(--s4); }
.calc__out {
  border-top: 1px dashed var(--line); padding-top: var(--s4);
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--s3); flex-wrap: wrap;
}
.calc__lab { font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.calc__sum {
  font-family: var(--head); font-size: clamp(1.7rem, 5.4vw, 2.3rem); font-weight: 800;
  letter-spacing: -.045em; color: var(--brand); font-variant-numeric: tabular-nums;
}
.calc__warn { margin: var(--s3) 0 0; font-size: .82rem; color: var(--ink-mute); }

/* ─────────────────────────────────────────────── Kartlar */
.grid { display: grid; gap: var(--s4); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

.card {
  position: relative; padding: var(--s5);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-5px); border-color: var(--brand-tint); box-shadow: var(--sh-2); }
.card__ico {
  width: 50px; height: 50px; margin-bottom: var(--s4);
  display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); border-radius: var(--r);
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.card:hover .card__ico { background: var(--brand); color: #fff; transform: scale(1.06) rotate(-3deg); }
.card__ico svg { width: 25px; height: 25px; }
.card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ─────────────────────────────────────────────── Hizmet kartları (ana sayfa) */
/* Altı kart bir ekrana sığsın: mobilde ikon solda yatay, geniş ekranda 3 sütun. */
.svcgrid { display: grid; gap: var(--s3); grid-template-columns: 1fr; }

.svc {
  position: relative;
  display: grid; grid-template-columns: 44px 1fr auto; align-items: center;
  gap: var(--s3) var(--s4);
  padding: var(--s4); text-decoration: none; color: inherit;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.svc:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: var(--sh-1); }
.svc--featured { border-color: var(--brand); background: var(--brand-soft); }
.svc--featured::after {
  content: "Öne çıkan"; position: absolute; top: -10px; left: var(--s4);
  background: var(--green); color: #fff; font-family: var(--head);
  font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
}

.svc__ico {
  grid-row: 1 / span 2; width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); border-radius: var(--r);
  transition: background .25s, color .25s;
}
.svc--featured .svc__ico { background: #fff; }
.svc:hover .svc__ico { background: var(--brand); color: #fff; }
.svc__ico svg { width: 22px; height: 22px; }

.svc h3 { margin: 0; font-size: 1.02rem; }
.svc p {
  grid-column: 2 / -1; margin: 0;
  font-size: .87rem; line-height: 1.45; color: var(--ink-soft);
}

.svc__foot { display: flex; align-items: center; gap: var(--s3); }
.svc__price {
  font-family: var(--head); font-size: .93rem; font-weight: 700;
  letter-spacing: -.02em; color: var(--brand); white-space: nowrap;
  font-variant-numeric: tabular-nums; text-align: right;
}
.svc__price small {
  display: block; font-size: .64rem; font-weight: 600; color: var(--ink-mute);
  letter-spacing: .06em; text-transform: uppercase;
}
.svc__go {
  width: 32px; height: 32px; flex: none; display: grid; place-items: center;
  border: 1.5px solid var(--line); border-radius: 50%; color: var(--brand);
  transition: background .25s, border-color .25s, color .25s, transform .25s var(--ease);
}
.svc:hover .svc__go { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateX(2px); }
.svc__go svg { width: 15px; height: 15px; }

/* ─────────────────────────────────────────────── Model galerisi */
.gal { display: grid; gap: var(--s3); }
.gal__main {
  position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden;
  background: #fff; border: 1px solid rgba(255,255,255,.14);
}
.gal__main img { width: 100%; height: auto; display: block; }
.gal__cap {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: var(--s5) var(--s3) var(--s3);
  background: linear-gradient(to top, rgba(15,19,25,.85), transparent);
  color: #fff; font-size: .85rem; font-weight: 600;
}
.gal__thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(76px, 1fr)); gap: var(--s2); }
.gal__t {
  padding: 0; border: 2px solid transparent; border-radius: var(--r);
  background: #fff; overflow: hidden; cursor: pointer; line-height: 0;
  transition: border-color .2s, transform .2s var(--ease);
}
.gal__t img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gal__t:hover { transform: translateY(-2px); }
.gal__t[aria-current="true"] { border-color: var(--green); }

/* ─────────────────────────────────────────────── Fiyat kademeleri */
.tiers { display: grid; gap: var(--s4); grid-template-columns: 1fr; margin-bottom: var(--s5); }
.tier {
  position: relative; padding: var(--s5);
  border: 1.5px solid var(--line); border-radius: var(--r-lg); background: var(--paper);
}
.tier--main { border-color: var(--brand); background: linear-gradient(180deg, var(--brand-soft), #fff 60%); }
.tier--main::before {
  content: "En çok tercih edilen"; position: absolute; top: -11px; left: var(--s5);
  background: var(--brand); color: #fff; font-family: var(--head);
  font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.tier__t { font-family: var(--head); font-size: 1.06rem; font-weight: 700; margin-bottom: 2px; }
.tier__d { font-size: .86rem; color: var(--ink-mute); margin-bottom: var(--s3); }
.tier__p {
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
  font-family: var(--head); font-weight: 800; letter-spacing: -.04em;
  font-size: clamp(1.5rem, 4.4vw, 1.95rem); color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.tier__p small { font-size: .84rem; font-weight: 600; color: var(--ink-mute); letter-spacing: 0; }
.tier__tot { margin-top: var(--s2); font-size: .9rem; color: var(--ink-soft); }
.tier__tot b { color: var(--brand); font-variant-numeric: tabular-nums; }
.tier__list { list-style: none; margin: var(--s3) 0 0; padding: 0; display: grid; gap: 6px; }
.tier__list li { display: flex; gap: 8px; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); }
.tier__list svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--green-dark); }
.tier__list .no { color: var(--ink-mute); }
.tier__list .no svg { color: #c0c6cf; }

@media (min-width: 700px) {
  .tiers { grid-template-columns: repeat(2, 1fr); }
  /* Üç seçenek varsa (anahtar teslim + ton bazlı gibi) yan yana sığsın */
  .tiers:has(.tier:nth-child(3)) { grid-template-columns: repeat(3, 1fr); }
}

/* ─────────────────────────────────────────────── Kırıntı yolu */
.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-bottom: var(--s4); font-size: .84rem; color: #8b95a3;
}
.crumbs a { color: var(--brand-tint); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }

/* ─────────────────────────────────────────────── Teknik şartname */
.spec { margin-bottom: var(--s5); }
.spec__h {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); padding-bottom: var(--s2); margin-bottom: 0;
  border-bottom: 2px solid var(--brand-soft);
}
.spec__list { margin: 0; }
.spec__row {
  display: grid; grid-template-columns: 1fr; gap: 2px;
  padding: var(--s3) 0; border-bottom: 1px solid var(--line-soft);
}
.spec__row dt { font-weight: 600; font-size: .93rem; color: var(--ink-soft); }
.spec__row dd { margin: 0; font-weight: 600; }

@media (min-width: 640px) {
  .spec__row { grid-template-columns: 220px 1fr; gap: var(--s4); align-items: baseline; }
}

/* ── Model kartı ──────────────────────────────────────────────────────
   Hizmet kartından farklı: görsel üstte tam genişlik, metin altında.
   Hizmet kartının 3 sütunlu ızgarasını kullanmıyor. */
.svc--model { display: flex; flex-direction: column; padding: 0; gap: 0; overflow: hidden; }

/* Çerçevenin oranı burada sabitlenir: fotoğraflı ve çizimli kartlar
   birebir aynı yüksekliği alsın, ızgara kaymasın. */
.svc__art {
  display: block; position: relative;
  /* align-self olmadan, içindeki SVG'nin doğal 300px genişliği kutuyu
     büzüyor ve fotoğraflı kartlarla hizası kayıyor. */
  align-self: stretch;
  aspect-ratio: 400 / 230;
  margin: var(--s2) var(--s2) 0;
  background: var(--ink);
  border-radius: var(--r);
  overflow: hidden;
  line-height: 0;
}
.svc__art > svg,
.svc__art > img { width: 100%; height: 100%; display: block; }
.svc__art > img { object-fit: cover; transition: transform .5s var(--ease); }
.svc--model:hover .svc__art > img { transform: scale(1.04); }

.svc--model .svc__body {
  display: flex; flex-direction: column; gap: 4px;
  padding: var(--s3) var(--s4) var(--s4); flex: 1;
}
.svc--model h3 { margin: 0; font-size: 1.05rem; line-height: 1.25; }
.svc--model p { margin: 0; font-size: .86rem; color: var(--ink-mute); }
.svc--model .svc__foot { margin-top: auto; padding-top: var(--s3); justify-content: space-between; }

/* ─────────────────────────────────────────────── Süreç */
.steps { position: relative; display: grid; gap: 0; }
.steps::before {
  content: ""; position: absolute; left: 21px; top: 34px; bottom: 34px;
  width: 2px; background: linear-gradient(var(--brand), var(--green));
  opacity: .3;
}
.step { display: grid; grid-template-columns: 44px 1fr; gap: var(--s4); padding: var(--s4) 0; position: relative; }
.step__n {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--paper); border: 2px solid var(--brand); color: var(--brand);
  border-radius: 50%; font-family: var(--head); font-weight: 800; font-size: 1rem;
  transition: background .3s var(--ease), color .3s, transform .3s var(--ease);
}
.step:hover .step__n { background: var(--brand); color: #fff; transform: scale(1.08); }
.step h3 { margin-bottom: 3px; }
.step p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.step__when { font-size: .78rem; font-weight: 700; color: var(--green-dark); text-transform: uppercase; letter-spacing: .06em; }

/* ─────────────────────────────────────────────── Referanslar */
.refs { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s3); }
.ref {
  position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden;
  background: var(--paper-2); border: 1px solid var(--line); aspect-ratio: 4/3;
}
.ref img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ref:hover img { transform: scale(1.06); }
.ref__meta {
  position: absolute; inset: auto 0 0 0; padding: var(--s6) var(--s3) var(--s3);
  background: linear-gradient(to top, rgba(15,19,25,.92), transparent); color: #fff;
}
.ref__t { font-family: var(--head); font-weight: 600; font-size: .94rem; line-height: 1.25; }
.ref__d { font-size: .78rem; color: #c2c9d2; }
/* Roldeki dürüstlük satış argümanı: "iskelet mi, anahtar teslim mi" görünsün. */
.ref__r { margin-top: 3px; font-size: .72rem; color: #96a0ad; }

/* Birden çok fotoğrafı olan referans tıklanabilir */
.ref--gal { cursor: zoom-in; }
.ref--gal:focus-visible { outline: 3px solid var(--brand-tint); outline-offset: 3px; }
.ref__count {
  position: absolute; top: var(--s2); right: var(--s2); z-index: 1;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 9px; border-radius: 999px;
  background: rgba(15,19,25,.72); color: #fff;
  font-size: .74rem; font-weight: 600; font-variant-numeric: tabular-nums;
  backdrop-filter: saturate(140%) blur(2px);
}
.ref__count svg { width: 13px; height: 13px; }

/* ─────────────────────────────────────────────── Fotoğraf büyütme */
.lbx {
  position: fixed; inset: 0; z-index: 90; display: none;
  background: rgba(9,12,16,.94);
  padding: clamp(12px, 3vw, 32px);
  grid-template-rows: auto 1fr auto; gap: var(--s3);
}
.lbx[open], .lbx.is-on { display: grid; }
body.lbx-open { overflow: hidden; }

.lbx__bar { display: flex; align-items: center; gap: var(--s3); color: #fff; }
.lbx__ttl { font-family: var(--head); font-weight: 600; font-size: 1rem; }
.lbx__no  { margin-left: auto; font-size: .82rem; color: #98a2af; font-variant-numeric: tabular-nums; }
.lbx__x {
  display: grid; place-items: center; width: 38px; height: 38px; flex: none;
  border: 1px solid rgba(255,255,255,.22); border-radius: 50%;
  background: none; color: #fff; cursor: pointer;
}
.lbx__x:hover { background: rgba(255,255,255,.12); }
.lbx__x svg { width: 18px; height: 18px; }

.lbx__stage { position: relative; display: grid; place-items: center; min-height: 0; }
.lbx__img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  border-radius: var(--r-md); background: #0f1319;
}
.lbx__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center; width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,.22); border-radius: 50%;
  background: rgba(15,19,25,.6); color: #fff; cursor: pointer;
}
.lbx__nav:hover { background: rgba(255,255,255,.16); }
.lbx__nav svg { width: 20px; height: 20px; }
.lbx__nav--p { left: 0; }
.lbx__nav--n { right: 0; }
.lbx__cap { min-height: 1.2em; text-align: center; color: #c2c9d2; font-size: .84rem; }

@media (max-width: 640px) {
  .lbx__nav { width: 40px; height: 40px; }
  .lbx__nav--p { left: -4px; }
  .lbx__nav--n { right: -4px; }
}

.ref-empty {
  grid-column: 1/-1; padding: var(--s7) var(--s5); text-align: center;
  border: 2px dashed var(--line); border-radius: var(--r-lg); background: var(--paper);
}
.ref-empty svg { width: 46px; height: 46px; margin: 0 auto var(--s3); color: var(--brand-tint); }
.ref-empty h3 { margin-bottom: var(--s2); }
.ref-empty p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto var(--s4); }

/* ─────────────────────────────────────────────── SSS */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  position: relative; padding: var(--s4) 44px var(--s4) 0; cursor: pointer;
  font-family: var(--head); font-weight: 600; font-size: 1.04rem; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px;
  margin-top: -8px; border-right: 2.5px solid var(--brand); border-bottom: 2.5px solid var(--brand);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq details > div { overflow: hidden; }
.faq details[open] > div { animation: faqOpen .32s var(--ease); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq p { padding: 0 0 var(--s4); margin: 0; color: var(--ink-soft); }

/* ─────────────────────────────────────────────── Form */
.formwrap {
  background: var(--paper); border-radius: var(--r-lg);
  box-shadow: var(--sh-3); overflow: hidden; color: var(--ink);
}
.formwrap__head { padding: var(--s5) var(--s5) 0; }
.formwrap__head h2 { font-size: clamp(1.35rem,3.4vw,1.7rem); margin-bottom: 6px; color: var(--ink); }
.formwrap__head p { color: var(--ink-soft); font-size: .95rem; }

.progress { height: 4px; background: var(--line-soft); }
.progress__bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--brand), var(--green)); transition: width .4s var(--ease); }

.form { padding: var(--s3) var(--s5) var(--s5); }
.fgroup { margin-bottom: var(--s5); }
.flabel { display: block; font-family: var(--head); font-weight: 600; font-size: .97rem; margin-bottom: var(--s2); }
.flabel span { font-family: var(--body); font-weight: 400; color: var(--ink-mute); font-size: .87rem; }

.opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(112px, 1fr)); gap: var(--s2); }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt span {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 50px; padding: 12px 10px;
  border: 1.5px solid var(--line); border-radius: var(--r);
  font-size: .93rem; font-weight: 600; color: var(--ink-soft);
  cursor: pointer; transition: border-color .18s, background .18s, color .18s, transform .12s;
}
.opt span:hover { border-color: var(--brand-tint); background: var(--brand-soft); }
.opt span:active { transform: scale(.98); }
.opt input:checked + span { border-color: var(--brand); background: var(--brand); color: #fff; }
.opt input:focus-visible + span { outline: 3px solid var(--green); outline-offset: 2px; }

.finput, .ftextarea, .fselect {
  width: 100%; min-height: 52px; padding: 14px 15px;
  border: 1.5px solid var(--line); border-radius: var(--r);
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--paper);
  transition: border-color .18s, box-shadow .18s;
}
.finput:focus, .ftextarea:focus, .fselect:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(30,63,119,.11);
}
.ftextarea { min-height: 92px; resize: vertical; }
.fselect {
  appearance: none; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236c7686' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
}

.ferror { display: none; margin-top: 6px; font-size: .85rem; font-weight: 600; color: var(--danger); }
.fgroup.has-error .finput, .fgroup.has-error .fselect { border-color: var(--danger); }
.fgroup.has-error .ferror { display: flex; align-items: center; gap: 6px; }
.fhint { margin: var(--s3) 0 0; font-size: .82rem; color: var(--ink-mute); text-align: center; }

/* Form geneli uyarı (sunucu hatası, hız limiti vb.) */
.formerr {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 0 0 var(--s4); padding: var(--s3) var(--s4);
  background: #fef2f2; border: 1.5px solid #fca5a5; border-left-width: 4px;
  border-radius: var(--r); color: #991b1b; font-size: .93rem; font-weight: 600;
}
.formerr[hidden] { display: none; }
.hp { position: absolute !important; left: -9999px !important; }

.formdone { display: none; padding: var(--s7) var(--s5); text-align: center; }
.formdone__ico {
  width: 66px; height: 66px; margin: 0 auto var(--s4); display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-dark); border-radius: 50%;
  animation: pop .5s var(--ease);
}
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.formdone__ico svg { width: 34px; height: 34px; }
.formdone code {
  display: inline-block; margin: 6px 0 var(--s4); padding: 9px 18px;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r);
  font-family: var(--head); font-size: 1.06rem; font-weight: 700; letter-spacing: .05em;
}
.is-done .formwrap__head, .is-done .form, .is-done .progress { display: none; }
.is-done .formdone { display: block; }

/* ─────────────────────────────────────────────── Footer */
.footer { background: var(--ink); color: #97a1ae; padding: var(--s8) 0 0; font-size: .95rem; }
.footer h4 { font-family: var(--head); color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--s3); }
.footer a { color: #c6cdd6; text-decoration: none; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; gap: var(--s6); padding-bottom: var(--s6); }
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer__bottom {
  border-top: 1px solid #232a35; padding: var(--s4) 0 108px;
  display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: space-between; font-size: .84rem; color: #6c7686;
}
.brand__logo--light { height: 66px; }

.credit {
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none; color: #6c7686; transition: color .2s;
}
.credit svg { width: 15px; height: 15px; }
.credit span { font-family: var(--head); font-weight: 600; color: #97a1ae; }
.credit:hover { color: #c6cdd6; }
.credit:hover span { color: #fff; }

/* ─────────────────────────────────────────────── Mobil çubuk */
.mobar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 1px;
  background: var(--line); border-top: 1px solid var(--line);
  box-shadow: 0 -4px 22px rgba(15,19,25,.13);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: 60px; padding: 9px 6px; background: var(--paper);
  text-decoration: none; font-family: var(--head); font-size: .75rem; font-weight: 600; color: var(--ink-soft);
}
.mobar a svg { width: 20px; height: 20px; }
.mobar .is-wa { color: var(--wa); }
.mobar .is-cta { background: var(--brand); color: #fff; }

/* ─────────────────────────────────────────────── Sabit WhatsApp butonu */
.wafab {
  position: fixed; right: 18px; z-index: 92;
  bottom: calc(74px + env(safe-area-inset-bottom));   /* mobil çubuğun üstünde */
  display: flex; align-items: center; gap: 10px;
  padding: 0; text-decoration: none;
}
.wafab__btn {
  position: relative;                 /* halka animasyonu buna göre konumlanır */
  width: 56px; height: 56px; flex: none;
  display: grid; place-items: center;
  background: var(--wa); color: #fff; border-radius: 50%;
  box-shadow: 0 6px 20px rgba(18,140,126,.42), 0 2px 6px rgba(15,19,25,.2);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.wafab__btn svg { width: 30px; height: 30px; }
.wafab:hover .wafab__btn { transform: scale(1.07); box-shadow: 0 10px 28px rgba(18,140,126,.5); }
.wafab:active .wafab__btn { transform: scale(.96); }

/* Dikkat çeken tek seferlik halka — sürekli titreşen buton değil */
.wafab__btn::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa);
  animation: waRing 2.6s var(--ease) 3;
}
@keyframes waRing {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

.wafab__lab {
  display: none; padding: 9px 15px;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-radius: 100px;
  box-shadow: var(--sh-2);
  font-family: var(--head); font-size: .88rem; font-weight: 600; white-space: nowrap;
}

@media (min-width: 900px) {
  .wafab { right: 26px; bottom: 26px; }
  .wafab__lab { display: block; }
}

/* ─────────────────────────────────────────────── Yardım Asistanı */
.asst-fab {
  position: fixed; right: 18px; z-index: 93;
  bottom: calc(140px + env(safe-area-inset-bottom));   /* WhatsApp'ın üstünde */
  width: 52px; height: 52px; padding: 0;
  display: grid; place-items: center;
  background: var(--brand); color: #fff;
  border: 0; border-radius: 50%; cursor: pointer;
  box-shadow: var(--sh-brand);
  transition: transform .25s var(--ease), background .25s;
}
.asst-fab:hover { transform: scale(1.07); background: var(--brand-lift); }
.asst-fab svg { width: 25px; height: 25px; }
.asst-fab__close { display: none; }
.asst-fab[aria-expanded="true"] .asst-fab__open { display: none; }
.asst-fab[aria-expanded="true"] .asst-fab__close { display: block; }

.asst-panel {
  position: fixed; right: 14px; z-index: 94;
  bottom: calc(140px + env(safe-area-inset-bottom));
  width: min(376px, calc(100vw - 28px));
  height: min(540px, calc(100vh - 210px));
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-3);
  animation: asstIn .22s var(--ease);
}
.asst-panel[hidden] { display: none; }
@keyframes asstIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }

.asst-head {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 14px; background: var(--brand); color: #fff;
}
.asst-head strong { font-family: var(--head); font-size: .97rem; display: block; line-height: 1.2; }
.asst-head small { font-size: .74rem; opacity: .8; }
.asst-head__dot {
  width: 9px; height: 9px; flex: none; border-radius: 50%;
  background: #6ee7a8; box-shadow: 0 0 0 3px rgba(255,255,255,.22);
}
.asst-head__x {
  margin-left: auto; width: 32px; height: 32px; padding: 0;
  display: grid; place-items: center;
  background: rgba(255,255,255,.14); border: 0; border-radius: 50%;
  color: #fff; cursor: pointer;
}
.asst-head__x:hover { background: rgba(255,255,255,.26); }
.asst-head__x svg { width: 15px; height: 15px; }

.asst-msgs {
  flex: 1; overflow-y: auto; padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--paper-2);
}
.asst-b {
  max-width: 86%; padding: 10px 13px; border-radius: 14px;
  font-size: .92rem; line-height: 1.5; white-space: pre-wrap; word-wrap: break-word;
}
.asst-b--bot  { align-self: flex-start; background: var(--paper); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.asst-b--user { align-self: flex-end; background: var(--brand); color: #fff; border-bottom-right-radius: 4px; }

.asst-typing { align-self: flex-start; display: flex; gap: 4px; padding: 13px 14px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; }
.asst-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-mute); animation: asstBlink 1s infinite; }
.asst-typing i:nth-child(2) { animation-delay: .18s; }
.asst-typing i:nth-child(3) { animation-delay: .36s; }
@keyframes asstBlink { 0%,60%,100% { opacity: .28; } 30% { opacity: 1; } }

.asst-chips { display: flex; flex-wrap: wrap; gap: 6px; align-self: flex-start; }
.asst-chip {
  padding: 7px 13px; background: var(--paper);
  border: 1.5px solid var(--brand); border-radius: 100px;
  color: var(--brand); font: inherit; font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: background .18s, color .18s;
}
.asst-chip:hover { background: var(--brand); color: #fff; }

.asst-cta {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; background: var(--green); color: #fff;
  border-radius: var(--r); text-decoration: none;
  font-family: var(--head); font-size: .89rem; font-weight: 600;
}
.asst-cta:hover { background: var(--green-dark); }

.asst-input { display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--line); background: var(--paper); }
.asst-input input {
  flex: 1; min-width: 0; padding: 11px 15px;
  border: 1.5px solid var(--line); border-radius: 100px;
  font: inherit; font-size: .95rem; background: var(--paper-2); color: var(--ink);
}
.asst-input input:focus { outline: none; border-color: var(--brand); background: var(--paper); }
.asst-input button {
  width: 44px; height: 44px; flex: none; padding: 0;
  display: grid; place-items: center;
  background: var(--brand); color: #fff; border: 0; border-radius: 50%; cursor: pointer;
}
.asst-input button:hover { background: var(--brand-lift); }
.asst-input button svg { width: 18px; height: 18px; }

@media (min-width: 900px) {
  .asst-fab   { right: 26px; bottom: 96px; }
  .asst-panel { right: 26px; bottom: 96px; height: min(560px, calc(100vh - 160px)); }
}

/* ─────────────────────────────────────────────── Kaydırma animasyonu
   Gizleme SADECE html.js varken uygulanır. JavaScript çalışmazsa
   içerik olduğu gibi görünür — animasyon uğruna sayfa kaybolmaz. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

/* ─────────────────────────────────────────────── Duyarlı */
@media (min-width: 600px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: 0; }
  .stat:nth-child(2n) { border-right: 1px solid var(--line-soft); }
  .stat:last-child { border-right: 0; }
  .pricegrid { grid-template-columns: repeat(2, 1fr); }
  /* Ağır çelikte üç kademe var (tek katlı / dubleks / 3 katlı); üçüncü kart
     tek başına alt satıra düşmesin. */
  .pricegrid:has(.pricecard:nth-child(3)) { grid-template-columns: repeat(3, 1fr); }
  .inclgrid  { grid-template-columns: repeat(2, 1fr); }
  .svcgrid   { grid-template-columns: repeat(2, 1fr); }
  .grid--2   { grid-template-columns: repeat(2, 1fr); }
  .calc__row { grid-template-columns: 1fr 1fr; }
  .refs      { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (min-width: 900px) {
  body { font-size: 17px; }
  .topnav, .topcall { display: flex; }
  .brand__logo { height: 50px; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .inclgrid { grid-template-columns: repeat(4, 1fr); }
  .svcgrid  { grid-template-columns: repeat(3, 1fr); }
  .hero__in { grid-template-columns: 1.05fr .95fr; align-items: center; padding: var(--s9) 0 calc(var(--s9) + var(--s6)); }
  .scrollcue { display: block; }
  .section { padding: var(--s9) 0; }
  .mobar { display: none; }
  .footer__bottom { padding-bottom: var(--s5); }
  .form, .formwrap__head { padding-left: var(--s6); padding-right: var(--s6); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .frame-art .fr-draw { stroke-dashoffset: 0; }
  .frame-art .fr-fill, .frame-art .fr-tag { opacity: 1; }
}
