/* =========================================================
   Selimoğlu Teknik Servis — Kurumsal / Mobile-First CSS
   ========================================================= */

:root {
  /* Kurumsal kırmızı-antrasit palet (logo ile uyumlu) */
  --navy:        #1a1d24;   /* koyu antrasit (eski "navy" yerine) */
  --navy-2:      #23272f;
  --brand:       #e8202a;   /* logo kırmızısı */
  --brand-dark:  #c4161d;
  --brand-light: #ffe9ea;
  --brand-bright:#ff3131;   /* logodan örneklenen canlı ton */
  --accent:      #f5a623;   /* yalnızca yıldız puanları için */
  --whatsapp:    #25d366;

  --ink:    #1a1d24;
  --body:   #5a5f6b;
  --muted:  #949aa6;
  --line:   #ececef;
  --bg:     #ffffff;
  --bg-alt: #faf7f7;

  --radius:    16px;
  --radius-sm: 12px;
  --shadow:    0 8px 30px rgba(26,29,36,.08);
  --shadow-md: 0 14px 40px rgba(26,29,36,.12);
  --shadow-lg: 0 24px 60px rgba(232,32,42,.22);

  --container: 1180px;
  --head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); color: var(--body); background: var(--bg);
  line-height: 1.7; font-size: 16px; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; font-family: var(--head); font-weight: 700; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: 600 15px/1 var(--font); padding: 13px 24px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px rgba(232,32,42,.3); }
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.3); }
.btn--whatsapp:hover { filter: brightness(.97); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--brand); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); background: var(--brand-light); }
.btn--light { background: #fff; color: var(--brand); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy); color: #c8ccd4; font-size: 13px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 42px; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: #c4d3e8; }
.topbar__item svg { width: 14px; height: 14px; fill: var(--brand-bright); flex: none; }
.topbar__item--mail, .topbar__hours { display: none; }
.topbar__badge { color: var(--accent); font-weight: 600; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow .2s ease;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(13,38,76,.08); }
.header__inner { display: flex; align-items: center; gap: 16px; min-height: 70px; }
.brand img { height: 44px; width: auto; }
.nav { display: none; }
.header__cta { display: none; margin-left: auto; padding: 11px 20px; }

.hamburger { margin-left: auto; width: 46px; height: 46px; display: grid; place-content: center; gap: 5px; background: var(--brand-light); border: 0; border-radius: 12px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2.5px; background: var(--brand); border-radius: 2px; transition: .25s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav.is-open {
  display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--line); padding: 8px 20px 18px; box-shadow: var(--shadow); gap: 2px;
}
.nav.is-open a { padding: 13px 8px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.nav.is-open a:last-child { border-bottom: 0; }

/* ---------- Hero Slider ---------- */
.hero { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.hero__slides { display: grid; }
.hero__slide {
  grid-area: 1 / 1; position: relative; display: flex; align-items: center;
  background-size: cover; background-position: center right; background-repeat: no-repeat;
  opacity: 0; visibility: hidden; transform: scale(1.04);
  transition: opacity .8s ease, transform 6s ease, visibility .8s;
}
.hero__slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,22,28,.96) 0%, rgba(20,22,28,.88) 42%, rgba(26,29,36,.6) 70%, rgba(26,29,36,.38) 100%);
}
.hero__slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 1; }
.hero__inner { position: relative; z-index: 2; padding: 58px 0 78px; width: 100%; }
.hero__content { max-width: 660px; }
.hero__slide.is-active .hero__content > * { animation: heroIn .7s ease both; }
.hero__slide.is-active .hero__content > *:nth-child(2) { animation-delay: .08s; }
.hero__slide.is-active .hero__content > *:nth-child(3) { animation-delay: .16s; }
.hero__slide.is-active .hero__content > *:nth-child(4) { animation-delay: .24s; }
.hero__slide.is-active .hero__content > *:nth-child(5) { animation-delay: .32s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Slider okları */
.hero__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.25); color: #fff; cursor: pointer; display: none;
  align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: background .2s, border-color .2s;
}
.hero__nav:hover { background: var(--brand); border-color: var(--brand); }
.hero__nav svg { width: 24px; height: 24px; }
.hero__nav--prev { left: 18px; }
.hero__nav--next { right: 18px; }

/* Slider noktaları */
.hero__dots { position: absolute; left: 0; right: 0; bottom: 20px; z-index: 5; display: flex; justify-content: center; gap: 10px; }
.hero__dots button {
  width: 11px; height: 11px; border-radius: 50%; border: 0; cursor: pointer; padding: 0;
  background: rgba(255,255,255,.45); transition: width .25s, background .25s;
}
.hero__dots button.is-active { width: 30px; border-radius: 6px; background: var(--brand-bright); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); color: #eaf1ff; font-size: 13px; font-weight: 600;
  padding: 8px 15px; border-radius: 999px; backdrop-filter: blur(4px);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-bright); box-shadow: 0 0 0 0 rgba(255,49,49,.6); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(255,49,49,.6);} 70% { box-shadow: 0 0 0 8px rgba(255,49,49,0);} 100% { box-shadow: 0 0 0 0 rgba(255,49,49,0);} }
.hero h1 { color: #fff; font-size: clamp(2rem, 6.5vw, 3.3rem); font-weight: 800; margin-top: 18px; line-height: 1.1; }
.hero h1 span { color: #ff6b6b; }
.hero__content > p { color: #d4e0f2; margin-top: 16px; font-size: 1.06rem; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.hero__trust li { font-size: 14px; color: #c6d4ea; }
.hero__trust strong { display: block; font-family: var(--head); font-size: 1.5rem; color: #fff; font-weight: 800; }

/* ---------- Brands bandı ---------- */
.brands { background: #fff; border-bottom: 1px solid var(--line); }
.brands__inner { padding: 22px 0; display: grid; gap: 14px; text-align: center; }
.brands__label { font-size: 13px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.brands__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; }
.brands__list li { font-family: var(--head); font-weight: 700; font-size: 1.05rem; color: #9aa7bd; transition: color .2s; }
.brands__list li:hover { color: var(--navy); }

/* ---------- Sections ---------- */
.section { padding: 60px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.eyebrow { display: inline-block; color: var(--brand); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.section__head h2 { font-size: clamp(1.7rem, 5vw, 2.4rem); }
.section__head p { margin-top: 14px; }

.grid { display: grid; gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }

/* Services */
.grid--services { grid-template-columns: 1fr; }
.service { padding: 28px 26px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s; position: relative; overflow: hidden; }
.service::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--brand), #ff6b6b); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service:hover::before { transform: scaleX(1); }
.service__icon { width: 62px; height: 62px; border-radius: 16px; display: grid; place-content: center; background: linear-gradient(145deg, var(--brand-light), #ffd6d8); margin-bottom: 18px; }
.service__icon svg { width: 32px; height: 32px; fill: var(--brand); }
.service h3 { font-size: 1.22rem; margin-bottom: 8px; }
.service__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 4px; }
.service__tags li { font-size: 12px; font-weight: 600; color: var(--brand-dark); background: var(--brand-light); padding: 4px 10px; border-radius: 999px; }
.service__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--brand); font-weight: 600; }
.service__link span { transition: transform .2s; }
.service:hover .service__link span { transform: translateX(4px); }

/* Neden Biz */
.why { display: grid; gap: 36px; }
.why__media { position: relative; }
.why__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: auto; object-fit: cover; aspect-ratio: 4/3; }
.why__badge {
  position: absolute; right: 16px; bottom: -18px; background: var(--brand); color: #fff;
  border-radius: 14px; padding: 14px 20px; box-shadow: var(--shadow-lg); text-align: center;
}
.why__badge strong { display: block; font-family: var(--head); font-size: 1.6rem; font-weight: 800; line-height: 1; }
.why__badge span { font-size: 12.5px; opacity: .9; }
.why__content h2 { font-size: clamp(1.6rem, 4.5vw, 2.2rem); margin-top: 6px; }
.why__content > p { margin-top: 14px; }
.why__grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 26px 0; }
.feature { display: flex; gap: 14px; }
.feature__ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--brand-light); display: grid; place-content: center; }
.feature__ic svg { width: 24px; height: 24px; fill: var(--brand); }
.feature h4 { font-size: 1.02rem; margin-bottom: 3px; }
.feature p { font-size: 14px; }

/* Süreç */
.grid--steps { grid-template-columns: 1fr; gap: 18px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; position: relative; box-shadow: var(--shadow); }
.step__no { position: absolute; top: 22px; right: 24px; font-family: var(--head); font-size: 3rem; font-weight: 800; color: var(--brand-light); line-height: 1; }
.step__ic { width: 58px; height: 58px; border-radius: 14px; background: var(--navy); display: grid; place-content: center; margin-bottom: 18px; }
.step__ic svg { width: 28px; height: 28px; fill: #fff; }
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }

/* Stats */
.stats { background: linear-gradient(120deg, var(--navy) 0%, var(--brand-dark) 100%); color: #fff; padding: 48px 0; }
.grid--stats { grid-template-columns: repeat(2, 1fr); gap: 30px 12px; text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat__num, .stat__plus, .stat__suffix { font-family: var(--head); font-size: clamp(2rem, 7vw, 2.9rem); font-weight: 800; color: #fff; line-height: 1; }
.stat__suffix { font-size: 1.3rem; margin-left: 2px; align-self: flex-end; color: #ff8a8a; }
.stat__plus { color: #ff8a8a; }
.stat p { color: #c6d4ea; margin-top: 10px; font-size: 14px; }

/* About */
.about { display: grid; gap: 32px; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: auto; object-fit: cover; aspect-ratio: 3/2; }
.about__content h2 { font-size: clamp(1.6rem, 4.5vw, 2.2rem); margin-top: 6px; }
.about__content > p { margin-top: 14px; }
.about__list { margin: 22px 0; display: grid; gap: 14px; }
.about__list li { position: relative; padding-left: 32px; }
.about__list li::before { content: "✓"; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; background: var(--brand); color: #fff; border-radius: 50%; display: grid; place-content: center; font-size: 12px; font-weight: 700; }
.about__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Reviews */
.grid--reviews { grid-template-columns: 1fr; }
.review { padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; }
.review__stars { color: #ffb400; letter-spacing: 3px; font-size: 15px; }
.review blockquote { color: var(--ink); font-size: 1rem; flex: 1; }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.review__av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(145deg, var(--brand), #ff6b6b); color: #fff; display: grid; place-content: center; font-family: var(--head); font-weight: 700; font-size: 14px; }
.review figcaption strong { display: block; color: var(--ink); font-size: 15px; }
.review figcaption small { color: var(--muted); }

/* CTA bandı */
.cta { background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; }
.cta__inner { padding: 44px 0; display: grid; gap: 22px; text-align: center; }
.cta h2 { color: #fff; font-size: clamp(1.5rem, 4.5vw, 2.1rem); }
.cta p { color: #dbe6ff; margin-top: 6px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Hizmet Bölgeleri */
.districts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.districts li {
  display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px; font-weight: 600; color: var(--ink); box-shadow: var(--shadow); transition: border-color .2s, transform .2s;
}
.districts li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--brand); flex: none; }
.districts li:hover { border-color: var(--brand); transform: translateY(-2px); }
.districts__note { text-align: center; margin-top: 22px; color: var(--body); }
.districts__note a { color: var(--brand); font-weight: 600; text-decoration: underline; }

/* SSS / FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); overflow: hidden; }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 18px 20px; font-family: var(--head); font-weight: 700;
  color: var(--ink); font-size: 1.02rem; display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__ic { position: relative; width: 20px; height: 20px; flex: none; }
.faq__ic::before, .faq__ic::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; transition: transform .25s, opacity .25s; }
.faq__ic::before { top: 9px; left: 2px; width: 16px; height: 2.5px; }
.faq__ic::after  { left: 9px; top: 2px; width: 2.5px; height: 16px; }
.faq__item[open] .faq__ic::after { transform: rotate(90deg); opacity: 0; }
.faq__item[open] summary { color: var(--brand); }
.faq__a { padding: 0 20px 18px; }
.faq__a p { color: var(--body); }
.faq__item[open] .faq__a { animation: faqIn .3s ease both; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Contact */
.contact { display: grid; gap: 24px; }
.contact__info { display: grid; gap: 14px; }
.contact__item { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; box-shadow: var(--shadow); }
.contact__ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--brand-light); display: grid; place-content: center; }
.contact__ic svg { width: 22px; height: 22px; fill: var(--brand); }
.contact__item small { display: block; font-size: 12px; color: var(--muted); }
.contact__item strong { color: var(--ink); font-size: 15px; }

.form { padding: 26px; display: grid; gap: 16px; }
.form__row { display: grid; gap: 16px; }
.form label { display: grid; gap: 7px; font-size: 14px; font-weight: 600; color: var(--ink); }
.form input, .form select, .form textarea {
  font: 400 15px var(--font); color: var(--ink); padding: 13px 14px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: #fff; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(232,32,42,.14); }
.form textarea { resize: vertical; }
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form__check { display: flex; flex-direction: row; align-items: flex-start; gap: 9px; font-weight: 400; font-size: 13.5px; color: var(--body); }
.form__check input { width: auto; margin-top: 3px; }
.form__check a { color: var(--brand); text-decoration: underline; }
.form__status { font-size: 14px; font-weight: 600; min-height: 1em; }
.form__status.is-ok { color: #15803d; }
.form__status.is-err { color: #dc2626; }

.map { margin-top: 30px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map iframe { display: block; }

/* Footer */
.footer { background: var(--navy); color: #aab9d0; padding-top: 52px; font-size: 14.5px; }
.grid--footer { grid-template-columns: 1fr; gap: 32px; padding-bottom: 38px; }
.footer__logo { background: #fff; padding: 8px 12px; border-radius: 10px; height: auto; width: 170px; }
.footer__col p { margin-top: 14px; max-width: 320px; }
.footer__col h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a:hover { color: #fff; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-content: center; transition: background .2s, transform .2s; }
.footer__social a:hover { background: var(--brand); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; fill: #cdd9ea; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: 13px; }
.footer__bottom-inner { display: grid; gap: 6px; text-align: center; }

/* Floating WhatsApp */
.fab-whatsapp { position: fixed; right: 16px; bottom: 84px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: var(--whatsapp); display: grid; place-content: center; box-shadow: 0 10px 26px rgba(37,211,102,.45); animation: pulse 2.4s infinite; }
.fab-whatsapp svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* Mobil alt çubuk */
.mobilebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1fr; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 18px rgba(13,38,76,.08); }
.mobilebar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; font-weight: 600; font-size: 15px; color: #fff; background: var(--brand); }
.mobilebar a svg { width: 18px; height: 18px; fill: currentColor; }
.mobilebar--wa { background: var(--whatsapp) !important; }
body { padding-bottom: 54px; }

/* =========================================================
   TABLET ≥ 600px
   ========================================================= */
@media (min-width: 600px) {
  .grid--services { grid-template-columns: repeat(2, 1fr); }
  .grid--reviews  { grid-template-columns: repeat(2, 1fr); }
  .grid--steps    { grid-template-columns: repeat(3, 1fr); }
  .grid--stats    { grid-template-columns: repeat(4, 1fr); }
  .form__row      { grid-template-columns: 1fr 1fr; }
  .contact__info  { grid-template-columns: 1fr 1fr; }
  .why__grid      { grid-template-columns: 1fr 1fr; }
  .districts      { grid-template-columns: repeat(4, 1fr); }
  .topbar__item--mail { display: inline-flex; }
  .cta__inner     { grid-template-columns: 1fr auto; text-align: left; align-items: center; }
  .cta__actions   { justify-content: flex-end; }
  .hero__nav      { display: flex; }
}

/* =========================================================
   DESKTOP ≥ 992px
   ========================================================= */
@media (min-width: 992px) {
  .topbar__hours { display: inline-flex; }
  .nav { display: flex; gap: 2px; margin-left: 18px; }
  .nav a { padding: 10px 14px; font-weight: 600; color: var(--ink); border-radius: 8px; transition: color .15s, background .15s; }
  .nav a:hover { color: var(--brand); background: var(--brand-light); }
  .header__cta { display: inline-flex; }
  .hamburger { display: none; }

  .hero__inner { padding: 96px 0 104px; }

  .section { padding: 88px 0; }
  .grid--services { grid-template-columns: repeat(4, 1fr); }
  .grid--reviews  { grid-template-columns: repeat(4, 1fr); }
  .grid--footer   { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .districts      { grid-template-columns: repeat(7, 1fr); }

  .why { grid-template-columns: 1fr 1.05fr; align-items: center; gap: 56px; }
  .about { grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; }
  .contact { grid-template-columns: 1fr 1.15fr; align-items: start; }
  .contact__info { grid-template-columns: 1fr; }

  .footer__bottom-inner { grid-template-columns: 1fr auto; text-align: left; }
  .fab-whatsapp { bottom: 28px; right: 28px; }
  .mobilebar { display: none; }
  body { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
