/* Başar Çevre — ana stil dosyası */
:root {
  --navy: #0d3b66;
  --navy-2: #082a4a;
  --blue: #1a5d99;
  --aqua: #36b3c7;
  --aqua-soft: #e3f5f8;
  --green: #2f9e62;
  --wa: #1fa855;
  --ink: #0f1f2e;
  --text: #33455a;
  --muted: #62748a;
  --bg: #ffffff;
  --bg-alt: #f2f7fa;
  --line: #e1e9f0;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(13, 59, 102, .06), 0 8px 24px rgba(13, 59, 102, .08);
  --shadow-lg: 0 2px 4px rgba(13, 59, 102, .06), 0 20px 48px rgba(13, 59, 102, .14);
  --wrap: 1200px;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
body {
  margin: 0; font-family: var(--font); font-size: 1rem; line-height: 1.7;
  color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
h1, h2, h3 { color: var(--ink); line-height: 1.2; letter-spacing: -.02em; margin: 0 0 .6em; text-wrap: balance; }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { padding: 0; margin: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; border-radius: 6px; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.center { text-align: center; margin-top: 2.5rem; }
.ico { width: 1.15em; height: 1.15em; flex: none; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .8em 1.35em; border-radius: 999px; font: inherit; font-weight: 700; font-size: .95rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; line-height: 1.2;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 1em 1.7em; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 6px 18px rgba(13, 59, 102, .25); }
.btn-primary:hover { background: var(--blue); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { border-color: rgba(255, 255, 255, .6); color: #fff; background: rgba(255, 255, 255, .06); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--aqua-soft); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #178a45; }

/* Topbar & header */
.topbar { background: var(--navy-2); color: #c6d5e4; font-size: .82rem; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 38px; }
.tb-right { display: flex; gap: 1.5rem; }
.tb-item { display: inline-flex; align-items: center; gap: .45em; color: inherit; text-decoration: none; }
a.tb-item:hover { color: #fff; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .92); backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid var(--line); }
.header-in { display: flex; align-items: center; gap: 1.5rem; min-height: 82px; }
.brand img { width: 128px; height: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 1.25rem; }
.nav > ul { display: flex; gap: .25rem; }
.nav li { position: relative; }
.nav > ul > li > a { display: block; padding: .6em .85em; color: var(--ink); font-weight: 600; font-size: .95rem; text-decoration: none; border-radius: 10px; }
.nav > ul > li > a:hover, .nav > ul > li > a[aria-current] { color: var(--blue); background: var(--aqua-soft); }
.has-sub { display: flex; align-items: center; }
.sub-toggle { display: none; }
.sub {
  position: absolute; top: 100%; left: 0; width: 300px; padding: .5rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: .18s ease; max-height: 70vh; overflow: auto;
}
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
.sub a { display: block; padding: .5em .8em; border-radius: 8px; color: var(--text); text-decoration: none; font-size: .9rem; font-weight: 500; }
.sub a:hover { background: var(--bg-alt); color: var(--blue); }
.nav-cta { display: none; }
.header-cta { white-space: nowrap; }
.menu-btn { display: none; margin-left: auto; background: none; border: 0; padding: 8px; color: var(--navy); cursor: pointer; }
.menu-btn .ico { width: 28px; height: 28px; }
.menu-btn .i-close { display: none; }

/* Hero */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--navy-2); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8, 42, 74, .94) 0%, rgba(8, 42, 74, .78) 45%, rgba(8, 42, 74, .25) 100%); }
.hero-in { position: relative; z-index: 1; padding: clamp(4rem, 10vw, 7.5rem) 20px clamp(4rem, 9vw, 6.5rem); }
.hero h1 { color: #fff; max-width: 15em; }
.hero-lead { font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 38em; color: #dce8f3; }
.eyebrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; font-size: .85rem; letter-spacing: .02em; color: #a7e6f0; background: rgba(54, 179, 199, .15); border: 1px solid rgba(54, 179, 199, .35); padding: .4em .9em; border-radius: 999px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0; }
.center-row { justify-content: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; font-size: .9rem; color: #cfe0ee; }
.hero-badges li { display: inline-flex; align-items: center; gap: .45em; }
.hero-badges .ico { color: var(--aqua); }

/* Stats */
.stats { background: #fff; border-bottom: 1px solid var(--line); }
.stats-in { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-in > div { padding: 1.8rem 1rem; text-align: center; border-right: 1px solid var(--line); }
.stats-in > div:last-child { border-right: 0; }
.stats strong { display: block; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.1; }
.stats span { font-size: .88rem; color: var(--muted); }

/* Sections */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section.alt { background: var(--bg-alt); }
.section.dark { background: var(--navy); color: #cfe0ee; }
.section.dark h2 { color: #fff; }
.sec-head { max-width: 720px; margin: 0 auto 2.75rem; text-align: center; }
.sec-head.left { text-align: left; margin: 0; }
.sec-head p:last-child { color: var(--muted); margin: 0; }
.dark .sec-head p:last-child { color: #a9bfd4; }
.kicker { display: inline-block; font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: .6rem; }
.dark .kicker { color: var(--aqua); }

/* Service cards */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-alt); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.svc-body h3, .svc-body h2 { font-size: 1.15rem; margin-bottom: .4em; }
.svc-body p { font-size: .94rem; color: var(--muted); flex: 1; }
.more { display: inline-flex; align-items: center; gap: .4em; font-weight: 700; font-size: .9rem; color: var(--blue); }
.svc-card:hover .more .ico { transform: translateX(3px); }
.more .ico { transition: transform .2s ease; }

.svc-group { margin-top: 3rem; scroll-margin-top: 110px; }
.svc-group h2 { font-size: 1.5rem; padding-bottom: .8rem; margin-bottom: 1.5rem; border-bottom: 2px solid var(--line); }
.chips { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.chips a { padding: .55em 1.1em; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--navy); font-weight: 600; font-size: .92rem; text-decoration: none; }
.chips a:hover { border-color: var(--navy); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; box-shadow: var(--shadow-lg); }
.split-media > img:first-child { aspect-ratio: 5 / 5.4; }
.split-media.stack { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1rem; align-items: end; }
.split-media.stack img:last-child { aspect-ratio: 4 / 5; margin-bottom: 2.5rem; }
.media-badge { position: absolute; right: -14px; bottom: 28px; background: var(--green); color: #fff; padding: 1rem 1.3rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .6rem; line-height: 1.25; font-size: .88rem; font-weight: 600; }
.media-badge strong { font-size: 1.9rem; font-weight: 800; }

/* Facts */
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin: 1.8rem 0 2rem; }
.facts > div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem 1.1rem; }
.facts dt { font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--green); }
.facts dd { margin: .2rem 0 0; font-weight: 600; color: var(--ink); font-size: .95rem; line-height: 1.45; }
.facts-lg { grid-template-columns: repeat(3, 1fr); margin: 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: s; }
.steps li { position: relative; padding: 1.7rem 1.5rem; border-radius: var(--radius-lg); background: var(--bg-alt); border: 1px solid var(--line); }
.step-n { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: #fff; font-weight: 800; margin-bottom: 1rem; }
.steps p { font-size: .94rem; color: var(--muted); margin: 0; }

/* Marquee */
.marquee { display: flex; overflow: hidden; gap: 1rem; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); padding: .5rem 0; }
.marquee-track { display: flex; gap: 1rem; flex: none; animation: scroll 60s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee li { white-space: nowrap; padding: .9rem 1.4rem; border-radius: 999px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); color: #e6eef6; font-weight: 600; font-size: .92rem; }
@keyframes scroll { to { transform: translateX(calc(-100% - 1rem)); } }
.dark .center { margin-top: 2rem; }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq { display: grid; gap: .75rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem; cursor: pointer; font-weight: 700; color: var(--ink); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ico { transition: transform .2s ease; color: var(--blue); }
.faq-item[open] summary .ico { transform: rotate(180deg); }
.faq-item p { padding: 0 1.3rem 1.2rem; margin: 0; color: var(--text); }
.faq-item[open] { border-color: #bfd6e6; box-shadow: var(--shadow); }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--blue), var(--navy) 60%); color: #d9e7f3; }
.cta-in { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-top: 3rem; padding-bottom: 3rem; }
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: .3em; }
.cta-band p { margin: 0; }
.cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; flex: none; }

/* Footer */
.site-footer { background: var(--navy-2); color: #a9bdd1; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-top: 4rem; padding-bottom: 3rem; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.f-logo { display: inline-block; background: #fff; padding: 10px 16px; border-radius: 12px; margin-bottom: 1rem; }
.f-logo img { width: 120px; }
.f-links li { margin-bottom: .45rem; }
.site-footer a { color: #cfdceb; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.f-contact { font-style: normal; }
.f-contact p { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .7rem; }
.f-contact .ico { margin-top: .3em; color: var(--aqua); }
.social { display: flex; gap: .6rem; }
.social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .08); }
.social a:hover { background: var(--aqua); color: var(--navy-2); }
.f-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem 2rem; padding-top: 1.4rem; padding-bottom: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .82rem; }
.f-bottom p { margin: 0; }

.fab-wa { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--wa); color: #fff; box-shadow: 0 8px 24px rgba(31, 168, 85, .45); transition: transform .2s ease; }
.fab-wa:hover { transform: scale(1.07); }
.fab-wa .ico { width: 30px; height: 30px; }

/* Page hero */
.page-hero { position: relative; color: #fff; background-color: var(--navy-2); background-position: center; background-size: cover; background-repeat: no-repeat; padding: clamp(3rem, 7vw, 5rem) 0; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8, 42, 74, .93) 30%, rgba(8, 42, 74, .62)); }
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.9rem); max-width: 20em; }
.ph-lead { color: #d3e2ef; font-size: 1.08rem; max-width: 40em; margin: 0; }
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .85rem; margin-bottom: 1rem; color: #a9c1d7; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; opacity: .6; }
.crumbs a { color: #d3e2ef; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }

/* Service detail */
.svc-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.prose h2 { font-size: 1.55rem; margin-top: 2.2rem; }
.prose h2:first-of-type { margin-top: 0; }
.prose > p { font-size: 1.04rem; }
.svc-hero-img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 2.2rem; }
.checklist { display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; padding: .85rem 1rem; background: var(--bg-alt); border-radius: 12px; }
.checklist .ico { color: #fff; background: var(--green); border-radius: 50%; padding: 3px; width: 22px; height: 22px; margin-top: .15em; }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tags li { padding: .45em 1em; border-radius: 999px; background: var(--aqua-soft); color: var(--navy); font-weight: 600; font-size: .9rem; }
.sidebar { position: sticky; top: 110px; display: grid; gap: 1.25rem; }
.side-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; background: #fff; }
.side-card h2 { font-size: 1.1rem; }
.contact-card { background: linear-gradient(150deg, var(--navy), var(--blue)); color: #d4e3f0; border: 0; display: grid; gap: .7rem; }
.contact-card h2 { color: #fff; margin: 0; }
.contact-card p { margin: 0 0 .3rem; font-size: .93rem; }
.side-list li a { display: block; padding: .5em .7em; border-radius: 8px; color: var(--text); text-decoration: none; font-size: .92rem; font-weight: 500; }
.side-list li a:hover { background: var(--bg-alt); color: var(--blue); }
.side-list li a[aria-current] { background: var(--navy); color: #fff; }

/* About values */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.values li { padding: 1.7rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.values .ico { width: 44px; height: 44px; padding: 10px; border-radius: 12px; background: var(--aqua-soft); color: var(--blue); margin-bottom: 1rem; }
.values p { font-size: .94rem; color: var(--muted); margin: 0; }

/* Documents */
.docs { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.doc-card { margin: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.doc-zoom { position: relative; display: block; width: 100%; padding: 1.5rem; border: 0; background: var(--bg-alt); cursor: zoom-in; }
.doc-zoom img { width: 100%; border-radius: 6px; box-shadow: var(--shadow); }
.zoom-ico { position: absolute; right: 1.2rem; top: 1.2rem; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: #fff; }
.doc-card figcaption { padding: 1.4rem 1.6rem 1.6rem; }
.doc-card h2 { font-size: 1.3rem; margin-bottom: .3em; }
.doc-scope { font-weight: 700; color: var(--green); margin-bottom: .4em; }
.doc-card figcaption p:last-child { color: var(--muted); font-size: .93rem; margin: 0; }
.note { display: flex; gap: 1rem; align-items: flex-start; margin-top: 2rem; padding: 1.3rem 1.5rem; border-radius: var(--radius); background: var(--aqua-soft); color: var(--navy); }
.note .ico { width: 26px; height: 26px; }
.note p { margin: 0; }
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(1100px, 94vw); }
.lightbox::backdrop { background: rgba(5, 20, 36, .85); }
.lightbox img { border-radius: 8px; max-height: 88vh; width: auto; }
.lb-close { position: absolute; right: 10px; top: 10px; width: 42px; height: 42px; border-radius: 50%; border: 0; background: #fff; color: var(--navy); display: grid; place-items: center; cursor: pointer; }

/* References */
.refs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.refs li { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); font-weight: 600; color: var(--ink); font-size: .94rem; line-height: 1.4; transition: box-shadow .2s ease, border-color .2s ease; }
.refs li:hover { border-color: transparent; box-shadow: var(--shadow); }
.ref-mark { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy), var(--aqua)); color: #fff; font-weight: 800; font-size: .95rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-list { display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ico { width: 44px; height: 44px; padding: 11px; border-radius: 12px; background: var(--aqua-soft); color: var(--blue); }
.contact-list span { display: block; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.contact-list a, .contact-list p { font-weight: 700; color: var(--ink); text-decoration: none; margin: 0; word-break: break-word; }
.contact-list a:hover { color: var(--blue); }
.form-card { padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius-lg); background: var(--bg-alt); border: 1px solid var(--line); scroll-margin-top: 110px; }
.form-card > p { color: var(--muted); }
form label { display: block; font-weight: 700; font-size: .88rem; color: var(--ink); margin-bottom: 1rem; }
form input, form select, form textarea { display: block; width: 100%; margin-top: .4rem; padding: .8rem 1rem; font: inherit; font-weight: 500; color: var(--ink); border: 1px solid #cbd8e3; border-radius: 10px; background: #fff; }
form input:focus, form select:focus, form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26, 93, 153, .15); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.form-error { color: #b42318; font-weight: 600; font-size: .9rem; }
.map iframe { display: block; width: 100%; height: 420px; border: 0; filter: saturate(.85); }

.notfound { min-height: 50vh; display: grid; place-items: center; }

/* Responsive */
@media (max-width: 1100px) {
  .header-cta span { display: none; }
  .header-cta { padding: .8em; }
  .nav > ul > li > a { padding: .6em .6em; font-size: .92rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values, .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .topbar .tb-item:first-child { display: none; }
  .topbar-in { justify-content: flex-end; }
  .menu-btn { display: block; }
  .header-cta { margin-left: auto; }
  .menu-btn { margin-left: 0; }
  .header-in { min-height: 70px; }
  .brand img { width: 108px; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; height: calc(100dvh - 70px); background: #fff; flex-direction: column; align-items: stretch;
    padding: 1rem 20px 2rem; overflow-y: auto; transform: translateX(100%); transition: transform .25s ease; visibility: hidden;
  }
  body.menu-open .nav { transform: none; visibility: visible; }
  body.menu-open { overflow: hidden; }
  body.menu-open .menu-btn .i-open { display: none; }
  body.menu-open .menu-btn .i-close { display: block; }
  .nav > ul { flex-direction: column; }
  .nav > ul > li > a { padding: .9em .5em; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; flex: 1; }
  .has-sub { flex-wrap: wrap; }
  .sub-toggle { display: grid; place-items: center; width: 48px; align-self: stretch; background: none; border: 0; border-bottom: 1px solid var(--line); color: var(--navy); cursor: pointer; }
  .sub-toggle[aria-expanded="true"] .ico { transform: rotate(180deg); }
  .sub { position: static; width: 100%; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; display: none; max-height: none; padding: .3rem 0 .3rem .8rem; }
  .has-sub:hover .sub { display: none; }
  .has-sub.open .sub { display: block; }
  .nav-cta { display: flex; margin-top: 1.5rem; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .split, .faq-wrap, .svc-layout, .contact-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .facts-lg { grid-template-columns: 1fr 1fr; }
  .refs { grid-template-columns: 1fr 1fr; }
  .cta-in { flex-direction: column; align-items: flex-start; }
  .media-badge { right: 12px; }
}
@media (max-width: 640px) {
  .topbar { display: none; }
  .stats-in { grid-template-columns: 1fr 1fr; }
  .stats-in > div:nth-child(2) { border-right: 0; }
  .stats-in > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .svc-grid, .values, .steps, .docs, .refs, .facts, .facts-lg, .footer-grid, .f-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .split-media.stack { grid-template-columns: 1fr; }
  .split-media.stack img:last-child { display: none; }
  .fab-wa { width: 52px; height: 52px; right: 14px; bottom: 14px; }
  .map iframe { height: 320px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
