* {
  box-sizing: border-box;
}

:root {
  --navy: #062b63;
  --navy-2: #021f4d;
  --blue: #1559b7;
  --green: #10a942;
  --ink: #071735;
  --muted: #53627a;
  --line: #dfe7f2;
  --soft: #f6f8fb;
  --shadow: 0 18px 42px rgba(6, 43, 99, .13);
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, Manrope, "Plus Jakarta Sans", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  background: linear-gradient(90deg, #052552, #082f6f);
  color: #fff;
  font-size: 14px;
}

.topbar-inner,
.header-inner,
.section,
.footer-inner {
  width: min(1280px, calc(100% - 120px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  gap: 24px;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.socials {
  margin-left: auto;
  display: inline-flex;
  gap: 14px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 rgba(6, 43, 99, .1);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 98px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: .02em;
}

.logo img {
  display: block;
  width: 270px;
  max-height: 76px;
  height: auto;
  object-fit: contain;
}

.footer-logo img {
  width: 230px;
  max-height: 78px;
  height: auto;
  object-fit: contain;
}

.logo-mark {
  width: 54px;
  height: 54px;
  border: 8px solid var(--blue);
  border-right-color: transparent;
  border-radius: 50%;
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 5px solid #0b63d7;
  border-left-color: transparent;
  border-radius: 50%;
}

.logo-title {
  display: block;
  font-size: 29px;
  line-height: .9;
}

.logo-sub {
  display: block;
  color: #1559b7;
  font-size: 17px;
  letter-spacing: .18em;
  margin-top: 6px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 31px;
  font-size: 14px;
  font-weight: 800;
}

.phone-head {
  display: grid;
  grid-template-columns: 34px auto;
  gap: 11px;
  align-items: center;
  font-weight: 900;
  color: var(--navy);
}

.phone-head small {
  display: block;
  margin-top: 3px;
  color: #68758d;
  font-weight: 700;
}

.hamburger {
  display: none;
  width: 44px;
  height: 34px;
  position: relative;
  cursor: pointer;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  height: 5px;
  border-radius: 5px;
  background: var(--navy);
}

.hamburger::before { top: 1px; }
.hamburger span { top: 14px; }
.hamburger::after { bottom: 1px; }

.hero {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.hero .section {
  min-height: 590px;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: 28px;
}

.hero .section > div:first-child {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--blue);
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(54px, 5.1vw, 78px);
  line-height: .99;
  letter-spacing: 0;
  color: #07183a;
}

.hero p {
  width: min(620px, 100%);
  margin-top: 24px;
  color: #23324c;
  font-size: 22px;
  line-height: 1.55;
}

.hero-media {
  align-self: stretch;
  min-height: 560px;
  background-image: linear-gradient(90deg, rgba(248,250,252,.74), rgba(248,250,252,.06) 30%, rgba(248,250,252,0)), url("assets/hero-desktop.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-media::after {
  content: none;
  white-space: pre;
  position: absolute;
  right: 76px;
  bottom: 38px;
  display: grid;
  place-items: center;
  width: 162px;
  height: 162px;
  border-radius: 18px;
  background: rgba(6, 43, 99, .9);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.38);
  text-align: center;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.05;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(6, 43, 99, .08);
  font-weight: 900;
}

.trust-item small {
  display: block;
  margin-top: 3px;
  color: #33415d;
  font-weight: 600;
}

.icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--blue);
  background: #eef4ff;
  font-weight: 900;
}

.icon::before,
.btn-icon::before,
.inline-icon::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  mask: var(--icon-url) center / contain no-repeat;
}

.icon::before {
  font-size: 26px;
}

.btn-icon,
.inline-icon {
  display: inline-grid;
  place-items: center;
  color: currentColor;
  flex: 0 0 auto;
}

.btn-icon::before {
  font-size: 23px;
}

.inline-icon::before {
  font-size: 16px;
}

.icon-phone { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 2 .7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.5c.9.3 1.8.6 2.8.7A2 2 0 0 1 22 16.9Z'/%3E%3C/svg%3E"); }
.icon-whatsapp { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 20.3 4.2 16A9 9 0 1 1 8 19.5L3 20.3Z'/%3E%3Cpath d='M8.7 8.2c.2-.5.5-.5.8-.5h.6c.2 0 .5 0 .7.5l.8 1.8c.1.3 0 .5-.1.7l-.5.6c-.2.2-.2.4 0 .7.4.7 1 1.4 1.7 1.9.6.4 1 .6 1.3.7.3.1.5.1.7-.1l.8-1c.2-.3.5-.3.8-.2l1.9.9c.3.1.5.3.5.5 0 .4-.2 1.2-.8 1.7-.6.5-1.6.8-3.3.1-2.8-1.1-5-3.3-6.1-6.1-.5-1.2-.3-1.8-.1-2.2Z'/%3E%3C/svg%3E"); }
.icon-shield { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); }
.icon-clock { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v6l4 2'/%3E%3C/svg%3E"); }
.icon-user { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 22c.8-4.1 4-6 8-6s7.2 1.9 8 6'/%3E%3C/svg%3E"); }
.icon-washer { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='2.5' width='16' height='19' rx='2'/%3E%3Cpath d='M4 7h16M8 5h.1M12 5h4'/%3E%3Ccircle cx='12' cy='14' r='5'/%3E%3Cpath d='M9 14c1.7 1.4 4.3 1.4 6 0'/%3E%3C/svg%3E"); }
.icon-ac { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='8' rx='2'/%3E%3Cpath d='M7 16h10M9 19h6M18 9h.1'/%3E%3C/svg%3E"); }
.icon-boiler { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='3' width='12' height='18' rx='2'/%3E%3Cpath d='M9 7h6M9 11h6M10 16h.1M14 16h.1'/%3E%3C/svg%3E"); }
.icon-map { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.icon-headset { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13a8 8 0 0 1 16 0v4a2 2 0 0 1-2 2h-2'/%3E%3Cpath d='M4 13v3a2 2 0 0 0 2 2h1v-7H6a2 2 0 0 0-2 2ZM20 13v3a2 2 0 0 1-2 2h-1v-7h1a2 2 0 0 1 2 2ZM15 19c0 1-1 2-3 2'/%3E%3C/svg%3E"); }
.icon-tag { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13 13 20 4 11V4h7l9 9Z'/%3E%3Ccircle cx='8.5' cy='8.5' r='1'/%3E%3C/svg%3E"); }
.icon-wrench { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a5 5 0 0 0-6.2 6.2L3 18l3 3 5.5-5.5a5 5 0 0 0 6.2-6.2l-3 3-3-3 3-3Z'/%3E%3C/svg%3E"); }
.icon-flame { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22c4 0 7-3 7-7 0-5-5-7-5-12-3 2-7 6-7 12 0 4 2 7 5 7Z'/%3E%3Cpath d='M12 22c-1.7 0-3-1.3-3-3 0-2 2-3.5 3-5 1 1.5 3 3 3 5 0 1.7-1.3 3-3 3Z'/%3E%3C/svg%3E"); }
.icon-gear { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v3M12 19v3M4.9 4.9 7 7M17 17l2.1 2.1M2 12h3M19 12h3M4.9 19.1 7 17M17 7l2.1-2.1'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E"); }
.icon-gauge { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 16a8 8 0 1 1 16 0'/%3E%3Cpath d='m12 16 4-5'/%3E%3Cpath d='M4 20h16'/%3E%3C/svg%3E"); }
.icon-file { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h7l4 4v14H7V3Z'/%3E%3Cpath d='M14 3v5h4M10 12h5M10 16h5'/%3E%3C/svg%3E"); }
.icon-check { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4 4L19 6'/%3E%3C/svg%3E"); }
.icon-mail { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E"); }
.icon-home { --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 11 9-8 9 8'/%3E%3Cpath d='M5 10v10h14V10M10 20v-6h4v6'/%3E%3C/svg%3E"); }

.btn-row {
  display: flex;
  gap: 18px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 66px;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(6, 43, 99, .12);
}

.btn-blue {
  background: linear-gradient(90deg, #062b63, #1559b7);
  color: #fff;
}

.btn-green {
  background: linear-gradient(90deg, #0aa337, #13bd4a);
  color: #fff;
}

.btn-outline {
  background: #fff;
  border-color: #17a64a;
  color: #0b8c38;
}

.section {
  padding: 74px 0;
}

.center-title {
  text-align: center;
  margin-bottom: 42px;
}

.center-title .eyebrow {
  justify-content: center;
  margin-bottom: 16px;
  font-size: 13px;
}

.center-title .eyebrow::after {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--blue);
}

.center-title h2,
.split-title h2 {
  color: #071c43;
  font-size: 36px;
  line-height: 1.15;
}

.center-title p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-photo {
  height: 226px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.photo-washer { background-image: url("assets/service-washer.png"); }
.photo-ac { background-image: url("assets/service-ac.png"); }
.photo-boiler { background-image: url("assets/service-boiler.png"); }

.service-body {
  padding: 0 20px 28px;
}

.service-card .icon {
  width: 68px;
  height: 68px;
  margin-top: -34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 0 0 7px #fff;
}

.service-card h3 {
  margin-top: 22px;
  color: var(--navy);
  font-size: 23px;
}

.service-card p {
  margin-top: 12px;
  color: #293851;
  font-size: 15.5px;
  line-height: 1.65;
}

.link {
  display: inline-flex;
  gap: 10px;
  margin-top: 20px;
  color: var(--navy);
  font-weight: 900;
}

.why {
  padding: 26px 0;
}

.why-panel {
  background: radial-gradient(circle at 100% 0, #0b438d, #031e47 42%, #011638);
  color: #fff;
  border-radius: 8px;
  padding: 38px 42px 46px;
  box-shadow: var(--shadow);
}

.why-panel .center-title h2,
.why-panel .center-title p,
.why-panel .center-title .eyebrow {
  color: #fff;
}

.why-panel .center-title {
  margin-bottom: 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.why-item {
  min-height: 154px;
  padding: 0 26px;
  border-left: 1px solid rgba(255,255,255,.32);
}

.why-item:first-child {
  border-left: 0;
}

.why-item .icon {
  background: transparent;
  color: #fff;
  font-size: 36px;
}

.why-item h3 {
  margin-top: 12px;
  color: #fff;
  font-size: 17px;
}

.why-item p {
  margin-top: 10px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.45;
}

.brands-strip {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  overflow: hidden;
  align-items: center;
  min-height: 128px;
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brands {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 22px;
  padding: 26px 34px;
  font-size: 23px;
  font-weight: 900;
}

.brands span:nth-child(1) { color: #111; font-style: italic; }
.brands span:nth-child(2) { color: #1593d2; }
.brands span:nth-child(3) { color: #222; }
.brands span:nth-child(4) { color: #079890; }
.brands span:nth-child(5) { color: #d8222a; }
.brands span:nth-child(6) { color: #165fbc; }

.izmir-img {
  align-self: stretch;
  min-height: 128px;
  background-image: url("assets/izmir.png");
  background-size: cover;
  background-position: center;
}

.districts {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(6, 43, 99, .09);
  padding: 30px 38px;
}

.split-title {
  margin-bottom: 26px;
}

.district-list {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 18px;
}

.pill {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #d7e1ef;
  border-radius: 7px;
  color: var(--navy);
  background: #fff;
  font-weight: 850;
}

.cta-card {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-card .icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1559b7, #2a78d9);
  color: #fff;
  font-size: 40px;
}

.cta-card h2 {
  font-size: 26px;
  color: var(--navy);
}

.cta-card p {
  margin-top: 8px;
  color: #33415d;
}

.reviews {
  background: #fff;
}

.page-reviews {
  margin-top: 36px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.review {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stars {
  color: #ffb020;
  font-size: 22px;
  letter-spacing: .08em;
}

.review p {
  margin-top: 17px;
  color: #263550;
  line-height: 1.55;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-weight: 900;
  color: var(--navy);
}

.avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2b6ed1;
  color: #fff;
}

.footer {
  background: #031f49;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr 1.2fr 1fr;
  gap: 52px;
  padding: 46px 0 28px;
}

.footer p,
.footer li,
.footer small {
  color: rgba(255,255,255,.82);
}

.footer ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.16);
  padding: 16px 0;
  text-align: center;
  color: rgba(255,255,255,.7);
}

.side-cta {
  position: fixed;
  right: 0;
  top: 260px;
  z-index: 30;
  display: grid;
  gap: 8px;
}

.side-cta a {
  width: 84px;
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 12px 10px;
  border-radius: 8px 0 0 8px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.bottom-cta {
  display: none;
}

.page-hero .section {
  min-height: 520px;
}

body:not(.home-page) .hero {
  background: #fff;
}

.page-hero h1 span,
.blue-word {
  color: #1559b7;
}

.breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 32px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -54px;
  padding: 24px 34px;
  position: relative;
  z-index: 4;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mini-card {
  min-height: 206px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 26px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(6, 43, 99, .08);
}

.mini-card .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.mini-card h3 {
  margin-top: 20px;
  color: var(--navy);
}

.mini-card h3 a {
  color: inherit;
  text-decoration: none;
}

.mini-card h3 a:hover {
  color: var(--blue);
}

.mini-card p {
  margin-top: 12px;
  color: #283751;
  line-height: 1.55;
}

.soft-panel {
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  margin-top: 36px;
  padding: 34px;
  background: linear-gradient(100deg, #eff6ff, #eaf3ff);
  border-radius: 8px;
  overflow: hidden;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li::before {
  content: "✓";
  margin-right: 12px;
  color: #0f58ba;
  font-weight: 900;
}

.shield-visual {
  height: 174px;
  background-image: url("assets/shield.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.faq {
  margin-top: 36px;
}

.faq h2 {
  margin-bottom: 22px;
  text-align: center;
  color: var(--navy);
  font-size: 32px;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  color: var(--navy);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item.open {
  border-color: #bdd2ef;
  box-shadow: 0 8px 18px rgba(6, 43, 99, .07);
}

.faq-item b {
  color: #1559b7;
  font-size: 22px;
  line-height: 1;
}

.faq-answer {
  display: none;
  margin-top: -1px;
  padding: 0 22px 18px;
  border: 1px solid #bdd2ef;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  color: #34445f;
  line-height: 1.55;
  background: #fff;
}

.faq-item + .faq-item {
  margin-top: 6px;
}

.faq-item.open + .faq-answer {
  display: block;
}

.faq-answer + .faq-item {
  margin-top: 6px;
}

.neighborhoods {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 28px;
}

.neighborhood-card,
.brands-card {
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.hood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.location-photo {
  min-height: 174px;
  border-radius: 8px;
  background-image: linear-gradient(0deg, rgba(6,43,99,.58), rgba(6,43,99,.04)), url("assets/buca-location.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  display: grid;
  place-items: end center;
  padding: 20px;
  text-align: center;
}

.location-photo h2,
.location-photo p {
  display: none;
}

.brands-card {
  margin-top: 18px;
  text-align: center;
}

.inner-hero {
  padding-top: 62px;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
}

.inner-hero h1 {
  margin-top: 20px;
  color: var(--navy);
  font-size: 48px;
  line-height: 1.08;
}

.inner-hero p {
  margin-top: 18px;
  max-width: 620px;
  color: #263550;
  font-size: 18px;
  line-height: 1.65;
}

.about-visual {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6,43,99,.92), rgba(21,89,183,.76)),
    url("assets/izmir-mobile.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.about-visual strong {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 3px solid rgba(238,179,71,.9);
  border-radius: 50%;
  font-size: 64px;
}

.about-visual span {
  font-size: 22px;
  font-weight: 900;
}

.content-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(6, 43, 99, .08);
}

.content-panel h2 {
  color: var(--navy);
  font-size: 28px;
}

.content-panel p {
  margin-top: 14px;
  color: #293852;
  line-height: 1.65;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-panel > div {
  min-height: 164px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(6, 43, 99, .08);
}

.contact-panel h3 {
  margin-top: 14px;
  color: var(--navy);
}

.contact-panel a,
.contact-panel p {
  display: inline-block;
  margin-top: 8px;
  color: #263550;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.brand-hero {
  padding-top: 62px;
}

.brand-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 48px;
}

.brand-hero h1 {
  margin-top: 20px;
  color: var(--navy);
  font-size: 48px;
  line-height: 1.08;
}

.brand-hero p {
  margin-top: 18px;
  max-width: 650px;
  color: #263550;
  font-size: 18px;
  line-height: 1.65;
}

.brand-card {
  min-height: 340px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(6,43,99,.95), rgba(21,89,183,.8)),
    url("assets/hero-mobile-home.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.brand-card strong {
  font-size: 62px;
  line-height: 1;
  letter-spacing: .04em;
}

.brand-card span {
  font-size: 22px;
  font-weight: 900;
}

.brand-card small {
  max-width: 360px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  line-height: 1.45;
}

.seo-panel {
  margin-top: 28px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(6, 43, 99, .08);
}

.blog-card > div:last-child {
  padding: 22px;
}

.blog-card span {
  color: #1559b7;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-top: 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.22;
}

.blog-card p {
  margin-top: 12px;
  color: #34445f;
  line-height: 1.55;
}

.blog-thumb,
.article-image {
  min-height: 190px;
  background-size: cover;
  background-position: center;
}

.article-wrap {
  max-width: 920px;
}

.article-wrap h1 {
  margin-top: 18px;
  color: var(--navy);
  font-size: 46px;
  line-height: 1.08;
}

.article-wrap .lead {
  margin-top: 18px;
  color: #263550;
  font-size: 18px;
  line-height: 1.65;
}

.article-image {
  margin: 28px 0;
  min-height: 330px;
  border-radius: 8px;
}

.article-wrap h2 {
  margin-top: 28px;
  color: var(--navy);
  font-size: 28px;
}

.article-wrap p {
  margin-top: 14px;
  color: #293852;
  line-height: 1.68;
}

.info-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 18px;
}

.info-row strong {
  color: var(--navy);
}

.info-row p {
  margin-top: 6px;
}

@media (max-width: 980px) {
  body {
    background: #020202;
  }

  .topbar {
    display: none;
  }

  .home-page .topbar {
    display: block;
    border-radius: 0;
  }

  .home-page .topbar-inner {
    min-height: 42px;
    width: calc(100% - 44px);
    justify-content: space-between;
    gap: 10px;
    font-size: 11px;
  }

  .home-page .topbar span:first-child {
    order: 2;
  }

  .home-page .topbar span:nth-child(2) {
    order: 1;
  }

  .home-page .topbar span:nth-child(3),
  .home-page .socials {
    display: none;
  }

  .site-shell {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    border-radius: 0;
    overflow: hidden;
  }

  .topbar-inner,
  .header-inner,
  .section,
  .footer-inner {
    width: calc(100% - 48px);
  }

  .topbar-inner,
  .header-inner,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .site-header {
    border-radius: 0;
  }

  .home-page .site-header {
    border-radius: 0;
  }

  .header-inner {
    min-height: 98px;
    grid-template-columns: 1fr auto;
  }

  .logo-mark {
    width: 48px;
    height: 48px;
  }

  .logo-title {
    font-size: 28px;
  }

  .logo-sub {
    font-size: 16px;
  }

  .nav,
  .phone-head {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-open .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    z-index: 50;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid #dfe7f2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(6, 43, 99, .16);
  }

  .nav-open .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 6px;
    color: var(--navy);
  }

  .nav-open .nav a:hover {
    background: #f0f5fd;
  }

  .nav-open .hamburger::before {
    top: 14px;
    transform: rotate(45deg);
  }

  .nav-open .hamburger span {
    opacity: 0;
  }

  .nav-open .hamburger::after {
    bottom: 15px;
    transform: rotate(-45deg);
  }

  .hero .section,
  .page-hero .section {
    position: relative;
    min-height: auto;
    display: block;
    padding-top: 44px;
    padding-bottom: 20px;
  }

  .hero {
    background: linear-gradient(90deg, #fff 0 52%, rgba(255,255,255,.76)), #fff;
  }

  .hero-media {
    position: absolute;
    top: 280px;
    right: -24px;
    width: 210px;
    min-height: 330px;
    margin: 0;
    background-image: url("assets/hero-mobile-home.png");
    background-size: cover;
    background-position: center;
    opacity: .98;
    z-index: 1;
  }

  .hero-media::after {
    display: none;
  }

  .eyebrow {
    font-size: 12px;
  }

  .eyebrow::before {
    width: 24px;
  }

  .hero h1 {
    width: 280px;
    margin-top: 22px;
    font-size: 42px;
    line-height: 1.12;
  }

  .hero p {
    width: 244px;
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.72;
  }

  .trust-row {
    width: 228px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .trust-item {
    min-height: 64px;
    padding: 9px 13px;
    border-radius: 8px;
    font-size: 16px;
  }

  .trust-item .icon {
    width: 42px;
    height: 42px;
  }

  .btn-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
  }

  .btn {
    min-height: 56px;
    padding: 0 20px;
    border-radius: 7px;
    font-size: 16px;
  }

  .hero .btn-row {
    width: 256px;
  }

  .mobile-badge {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 22px;
    padding: 18px 22px;
    background: #04275d;
    border-radius: 8px;
    color: #fff;
  }

  .home-page .hero .section {
    padding-top: 12px;
    padding-bottom: 18px;
  }

  .home-page .hero h1 {
    width: 360px;
    margin-top: 22px;
    font-size: 39px;
    line-height: 1.1;
  }

  .home-page .hero p {
    width: 286px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.62;
  }

  .home-page .hero-media {
    top: 174px;
    right: -20px;
    width: 218px;
    min-height: 372px;
    background-image: url("assets/hero-mobile-home.png");
    background-position: 47% center;
  }

  .home-page .trust-row {
    width: 216px;
    gap: 12px;
    margin-top: 18px;
  }

  .home-page .trust-item {
    min-height: 62px;
    border-radius: 7px;
    box-shadow: 0 9px 22px rgba(6, 43, 99, .12);
  }

  .home-page .hero .btn-row {
    width: 100%;
    margin-top: 22px;
  }

  .home-page .hero .btn {
    width: 256px;
  }

  .home-page .hero .btn-outline {
    background: #fff;
  }

  .home-page .mobile-badge {
    width: 100%;
    min-height: 126px;
    grid-template-columns: 110px 1fr;
    margin-top: 24px;
    padding: 22px 26px;
    border-radius: 8px;
  }

  .home-page .mobile-badge strong {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 2px solid rgba(238, 179, 71, .85);
    color: #fff;
  }

  .home-page #hizmetler {
    padding-top: 46px;
  }

  .home-page .service-card {
    grid-template-columns: 43% 57%;
    min-height: 196px;
  }

  .home-page .service-photo {
    min-height: 196px;
  }

  .home-page .service-body {
    padding: 20px 16px;
  }

  .home-page .why-panel {
    margin-top: 8px;
  }

  .mobile-badge strong {
    font-size: 50px;
  }

  .section {
    padding: 44px 0;
  }

  .center-title {
    margin-bottom: 28px;
  }

  .center-title h2,
  .split-title h2 {
    font-size: 28px;
  }

  .service-grid,
  .review-grid,
  .mini-grid,
  .why-grid,
  .footer-inner,
  .brands-strip,
  .neighborhoods {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 16px;
  }

  .service-card {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 200px;
  }

  .service-photo {
    height: 100%;
    min-height: 200px;
    background-size: cover;
  }

  .photo-washer { background-image: url("assets/mobile-washer.png?v=clean3"); }
  .photo-ac { background-image: url("assets/mobile-ac.png?v=clean2"); }
  .photo-boiler { background-image: url("assets/mobile-boiler.png?v=clean2"); }

  .service-body {
    padding: 24px 18px;
  }

  .service-card .icon {
    width: 56px;
    height: 56px;
    margin-top: 0;
  }

  .service-card h3 {
    font-size: 18px;
    margin-top: 16px;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .why-panel {
    padding: 32px 24px;
    border-radius: 8px;
  }

  .why-grid {
    gap: 0;
  }

  .why-item {
    display: grid;
    grid-template-columns: 68px 1fr;
    align-items: center;
    min-height: 112px;
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.26);
  }

  .brands-strip {
    margin-top: -12px;
  }

  .brands {
    flex-wrap: wrap;
    padding: 24px 18px;
  }

  .izmir-img {
    min-height: 172px;
    background-image: url("assets/izmir-mobile.png");
    background-size: cover;
    background-position: center;
  }

  .districts,
  .cta-card {
    padding: 26px 18px;
  }

  .district-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .pill {
    min-height: 42px;
    font-size: 13px;
  }

  .cta-card {
    grid-template-columns: 72px 1fr;
    gap: 16px;
  }

  .cta-card .btn-row {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .review-grid {
    gap: 18px;
  }

  .footer {
    padding-bottom: 76px;
  }

  .footer-inner {
    gap: 28px;
  }

  .side-cta {
    display: none;
  }

  .bottom-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    z-index: 40;
    left: 50%;
    bottom: 0;
    width: 100%;
    max-width: none;
    transform: translateX(-50%);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 -8px 22px rgba(0,0,0,.16);
  }

  .bottom-cta a {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
  }

  .breadcrumb {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .page-hero .hero-media {
    top: 146px;
    right: -78px;
    width: 232px;
    min-height: 312px;
    background-image: url("assets/hero-kombi.png");
    background-size: cover;
    background-position: center;
  }

  .buca-page .page-hero .hero-media {
    top: 174px;
    right: -118px;
    width: 250px;
    min-height: 300px;
    background-image: url("assets/hero-buca.png");
    background-size: cover;
    background-position: center;
  }

  .page-hero h1 {
    width: 250px;
  }

  .feature-band {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 0;
    padding: 18px 8px;
  }

  .feature-band .trust-item {
    display: grid;
    justify-items: center;
    text-align: center;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 13px;
  }

  .feature-band .trust-item .icon {
    width: 44px;
    height: 44px;
  }

  .mini-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .mini-card {
    min-height: 142px;
    padding: 16px 10px;
  }

  .mini-card .icon {
    width: 58px;
    height: 58px;
  }

  .mini-card h3 {
    font-size: 15px;
  }

  .mini-card p {
    display: none;
  }

  .soft-panel {
    grid-template-columns: 1fr 130px;
    padding: 24px 18px;
  }

  .shield-visual {
    height: 126px;
    background-size: 410px auto;
  }

  .hood-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-photo {
    min-height: 138px;
  }
}

@media (max-width: 980px) {
  body:not(.home-page) {
    background: #fff;
  }

  body:not(.home-page) .site-shell {
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
  }

  body:not(.home-page) .site-header {
    position: relative;
    border-radius: 0;
    box-shadow: 0 1px 0 rgba(6, 43, 99, .08);
  }

  body:not(.home-page) .header-inner {
    min-height: 76px;
  }

  body:not(.home-page) .hero .section,
  body:not(.home-page) .page-hero .section {
    min-height: 356px;
    padding-top: 42px;
    padding-bottom: 0;
  }

  body:not(.home-page) .page-hero {
    border-bottom: 0;
  }

  body:not(.home-page) .eyebrow {
    display: inline-flex;
    padding: 7px 12px;
    color: #fff;
    background: #1559b7;
    border-radius: 7px;
    line-height: 1;
  }

  body:not(.home-page) .eyebrow::before,
  body:not(.home-page) .eyebrow::after {
    display: none;
  }

  body:not(.home-page) .breadcrumb {
    width: 330px;
    margin: -16px 0 24px;
    gap: 7px;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
  }

  body:not(.home-page) .page-hero h1 {
    width: 236px;
    margin-top: 18px;
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: 0;
  }

  body:not(.home-page) .buca-page .page-hero h1 {
    width: 244px;
    margin-top: 0;
    position: relative;
    z-index: 2;
  }

  body:not(.home-page) .page-hero p {
    width: 216px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.58;
  }

  body:not(.home-page) .buca-page .page-hero p {
    width: 212px;
    font-size: 13px;
    line-height: 1.46;
    position: relative;
    z-index: 2;
  }

  body:not(.home-page) .page-hero .btn-row {
    display: none;
  }

  body:not(.home-page) .feature-band {
    width: 100%;
    margin: 0 auto;
    padding: 14px 10px;
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(6, 43, 99, .13);
  }

  body:not(.home-page) .feature-band .trust-item {
    min-height: 68px;
    padding: 6px;
    gap: 7px;
    color: var(--navy);
  }

  body:not(.home-page) .feature-band .trust-item + .trust-item {
    border-left: 1px solid #e0e7f2;
  }

  body:not(.home-page) .feature-band .trust-item .icon {
    width: 36px;
    height: 36px;
    background: #f0f5fd;
    color: #1559b7;
  }

  body:not(.home-page) .feature-band .trust-item span:last-child {
    font-size: 13px;
    line-height: 1.15;
  }

  body:not(.home-page) .feature-band .trust-item small {
    margin-top: 3px;
    font-size: 11px;
  }

  body:not(.home-page) .feature-band + .btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  body:not(.home-page) .feature-band + .btn-row .btn {
    min-height: 54px;
    padding: 0 8px;
    font-size: 14px;
  }

  body:not(.home-page) .section {
    padding: 28px 0;
  }

  body:not(.home-page) .center-title {
    margin-bottom: 16px;
  }

  body:not(.home-page) .center-title h2 {
    font-size: 23px;
    line-height: 1.15;
  }

  body:not(.home-page) .mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }

  body:not(.home-page) .mini-card {
    min-height: 126px;
    padding: 13px 6px;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(6, 43, 99, .07);
  }

  body:not(.home-page) .mini-card .icon {
    width: 42px;
    height: 42px;
  }

  body:not(.home-page) .mini-card h3 {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.2;
  }

  body:not(.home-page) .mini-card p {
    display: block;
    margin-top: 6px;
    font-size: 9.5px;
    line-height: 1.35;
  }

  body:not(.home-page) .buca-page .mini-card p {
    display: none;
  }

  body:not(.home-page) .soft-panel {
    grid-template-columns: 1fr 124px;
    gap: 10px;
    margin-top: 24px;
    padding: 20px 18px;
    border-radius: 8px;
    background: linear-gradient(100deg, #edf5ff, #e7f1ff);
  }

  body:not(.home-page) .soft-panel h2 {
    font-size: 20px;
    line-height: 1.15;
  }

  body:not(.home-page) .check-list {
    margin-top: 12px;
    gap: 7px;
    font-size: 12px;
    line-height: 1.25;
  }

  body:not(.home-page) .check-list li::before {
    margin-right: 8px;
  }

  body:not(.home-page) .shield-visual {
    height: 118px;
    background-size: contain;
  }

  body:not(.home-page) .faq {
    margin-top: 24px;
  }

  body:not(.home-page) .faq h2 {
    margin-bottom: 14px;
    font-size: 22px;
  }

  body:not(.home-page) .faq-item {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 7px;
    font-size: 12px;
  }

  body:not(.home-page) .faq-answer {
    padding: 0 14px 14px;
    border-radius: 0 0 7px 7px;
    font-size: 12px;
  }

  body:not(.home-page) .cta-card {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    margin-top: 24px;
    padding: 20px 14px;
    border-radius: 8px;
    background: #062b63;
    color: #fff;
  }

  body:not(.home-page) .cta-card .icon {
    width: 48px;
    height: 48px;
    background: transparent;
    color: #fff;
  }

  body:not(.home-page) .cta-card h2 {
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
  }

  body:not(.home-page) .cta-card p {
    color: rgba(255,255,255,.86);
    font-size: 12px;
    line-height: 1.45;
  }

  body:not(.home-page) .cta-card .btn-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  body:not(.home-page) .cta-card .btn {
    min-height: 48px;
    padding: 0 8px;
    font-size: 12px;
  }

  body:not(.home-page) .bottom-cta a {
    min-height: 64px;
    font-size: 17px;
  }

  body:not(.home-page) .page-reviews {
    margin-top: 24px;
  }

  body:not(.home-page) .page-reviews .review-grid {
    display: flex;
    gap: 14px;
    width: calc(100% + 24px);
    margin-left: -12px;
    padding: 0 12px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body:not(.home-page) .page-reviews .review-grid::-webkit-scrollbar {
    display: none;
  }

  body:not(.home-page) .page-reviews .review {
    flex: 0 0 calc(100% - 24px);
    width: auto;
    margin: 0;
    padding: 22px;
    scroll-snap-align: center;
  }

  body:not(.home-page) .page-reviews .review p {
    font-size: 13px;
    line-height: 1.5;
  }

  .buca-page .neighborhoods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .buca-page .neighborhood-card,
  .buca-page .brands-card {
    padding: 18px 14px;
    border-radius: 8px;
  }

  .buca-page .neighborhood-card h2,
  .buca-page .brands-card h2 {
    font-size: 20px;
    line-height: 1.15;
  }

  .buca-page .hood-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .buca-page .pill {
    min-height: 34px;
    padding: 0 4px;
    font-size: 11px;
  }

  .buca-page .location-photo {
    min-height: 124px;
    padding: 14px;
    background-image: linear-gradient(0deg, rgba(6,43,99,.62), rgba(6,43,99,.06)), url("assets/buca-location-clean.png");
  }

  .buca-page .location-photo h2 {
    font-size: 20px;
  }

  .buca-page .brands-card {
    margin-top: 10px;
  }

  .buca-page .brands-card .brands {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 12px 0 0;
    font-size: 12px;
  }

  .inner-hero {
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .inner-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .inner-hero h1 {
    margin-top: 16px;
    font-size: 34px;
    line-height: 1.1;
  }

  .inner-hero p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .inner-hero .btn-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .inner-hero .btn {
    min-height: 52px;
    padding: 0 8px;
    font-size: 13px;
  }

  .about-visual {
    min-height: 172px;
    border-radius: 8px;
  }

  .about-visual strong {
    width: 88px;
    height: 88px;
    font-size: 42px;
  }

  .about-visual span {
    font-size: 17px;
  }

  .about-content,
  .contact-content {
    padding-top: 16px;
    padding-bottom: 92px;
  }

  .content-panel {
    padding: 22px;
    border-radius: 8px;
  }

  .content-panel h2 {
    font-size: 22px;
  }

  .content-panel p {
    font-size: 13px;
    line-height: 1.55;
  }

  .contact-panel {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .contact-panel > div {
    min-height: 132px;
    padding: 16px 12px;
  }

  .contact-panel .icon {
    width: 42px;
    height: 42px;
  }

  .contact-panel h3 {
    margin-top: 10px;
    font-size: 14px;
  }

  .contact-panel a,
  .contact-panel p {
    font-size: 11px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .info-row {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .brand-hero {
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .brand-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-hero h1 {
    margin-top: 16px;
    font-size: 34px;
    line-height: 1.1;
  }

  .brand-hero p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .brand-hero .btn-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .brand-hero .btn {
    min-height: 52px;
    padding: 0 8px;
    font-size: 13px;
  }

  .brand-card {
    min-height: 168px;
    padding: 24px;
  }

  .brand-card strong {
    font-size: 42px;
  }

  .brand-card span {
    font-size: 17px;
  }

  .brand-card small {
    font-size: 12px;
  }

  .blog-list {
    padding-top: 10px;
    padding-bottom: 92px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-card {
    display: grid;
    grid-template-columns: 128px 1fr;
    min-height: 164px;
  }

  .blog-thumb {
    min-height: 164px;
  }

  .blog-card > div:last-child {
    padding: 16px 14px;
  }

  .blog-card h2 {
    font-size: 16px;
    line-height: 1.2;
  }

  .blog-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  .article-wrap {
    padding-bottom: 96px;
  }

  .article-wrap h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .article-wrap .lead {
    font-size: 14px;
    line-height: 1.58;
  }

  .article-image {
    min-height: 210px;
    margin: 22px 0;
  }

  .article-wrap h2 {
    font-size: 22px;
  }

  .article-wrap p {
    font-size: 13px;
    line-height: 1.58;
  }
}

@media (min-width: 981px) {
  .mobile-badge {
    display: none;
  }
}

@media (max-width: 420px) {
  .topbar-inner,
  .header-inner,
  .section,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .logo-title {
    font-size: 24px;
  }

  .logo-sub {
    font-size: 13px;
  }

  .hero-media {
    width: 190px;
  }

  .hero h1 {
    width: 252px;
    font-size: 38px;
  }

  .hero p,
  .trust-row,
  .hero .btn-row {
    width: 232px;
  }
}

@media (max-width: 980px) {
  .home-page {
    background: #f2f4f7;
  }

  .home-page .site-shell {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 18px 60px rgba(6, 43, 99, .12);
  }

  .home-page .header-inner {
    min-height: 98px;
  }

  .home-page .logo-mark {
    width: 48px;
    height: 48px;
    border-width: 7px;
  }

  .home-page .logo-title {
    font-size: 25px;
  }

  .home-page .logo-sub {
    font-size: 13px;
    letter-spacing: .2em;
  }

  .home-page .hamburger {
    width: 31px;
    height: 25px;
  }

  .logo img {
    content: url("assets/ege-bolge-logo-mobile.png");
    width: 186px;
    max-height: 66px;
  }

  .footer-logo img {
    content: url("assets/ege-bolge-logo-white-mobile.png");
    width: 168px;
    max-height: 68px;
  }

  .home-page .hamburger::before,
  .home-page .hamburger::after,
  .home-page .hamburger span {
    height: 3px;
  }

  .home-page .hamburger span {
    top: 11px;
  }

  .home-page .eyebrow {
    font-size: 11px;
    gap: 10px;
  }

  .home-page .eyebrow::before {
    width: 22px;
    height: 2px;
  }

  .home-page .center-title .eyebrow::after {
    width: 22px;
    height: 2px;
  }

  .home-page .icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .home-page .icon::before {
    font-size: 21px;
  }

  .home-page .hero {
    background: #fff;
  }

  .home-page .hero .section {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .home-page .hero h1 {
    width: 360px;
    margin-top: 18px;
    font-size: 39px;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .home-page .hero p {
    width: 230px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.62;
  }

  .home-page .hero-media {
    top: 284px;
    right: -8px;
    width: 205px;
    min-height: 344px;
    background-image: url("assets/hero-mobile-home.png");
    background-position: 43% center;
  }

  .home-page .trust-row {
    width: 208px;
    gap: 12px;
    margin-top: 20px;
  }

  .home-page .trust-item {
    min-height: 56px;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 8px 18px rgba(6, 43, 99, .13);
  }

  .home-page .trust-item small {
    font-size: 11px;
  }

  .home-page .hero .btn-row {
    width: 208px;
    gap: 10px;
    margin-top: 18px;
  }

  .home-page .hero .btn {
    width: 208px;
    min-height: 52px;
    font-size: 15px;
  }

  .home-page .btn-icon::before {
    font-size: 18px;
  }

  .home-page .mobile-badge {
    min-height: 126px;
    margin-top: 24px;
    grid-template-columns: 112px 1fr;
    gap: 18px;
    padding: 20px 24px;
    background: linear-gradient(90deg, #062b63, #082e69);
  }

  .home-page .mobile-badge strong {
    font-size: 45px;
  }

  .home-page .mobile-badge span {
    font-size: 14px;
    line-height: 1.45;
  }

  .home-page #hizmetler {
    padding-top: 42px;
    padding-bottom: 22px;
  }

  .home-page .center-title {
    margin-bottom: 26px;
  }

  .home-page .center-title h2 {
    font-size: 25px;
    line-height: 1.16;
  }

  .home-page .center-title p {
    width: 270px;
    margin: 12px auto 0;
    font-size: 12.5px;
    line-height: 1.5;
  }

  .home-page .service-grid {
    gap: 14px;
  }

  .home-page .service-card {
    display: flex;
    grid-template-columns: none;
    min-height: 190px;
    border-radius: 8px;
    overflow: hidden;
  }

  .home-page .service-photo {
    flex: 0 0 158px;
    width: 158px;
    min-height: 190px;
  }

  .home-page .service-body {
    flex: 1 1 auto;
    min-width: 0;
    padding: 17px 16px 14px 38px;
    position: relative;
    z-index: 2;
    background: #fff;
    overflow: hidden;
  }

  .home-page .service-body::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 34px;
    background: #fff;
    box-shadow: -8px 0 14px rgba(255,255,255,.96);
    z-index: 3;
  }

  .home-page .service-body > * {
    position: relative;
    z-index: 4;
  }

  .home-page .service-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    margin-top: 0;
    background: var(--navy);
    color: #fff;
    box-shadow: none;
  }

  .home-page .service-card h3 {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.2;
  }

  .home-page .service-card p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.55;
  }

  .home-page .link {
    margin-top: 10px;
    font-size: 12px;
  }

  .home-page .why {
    padding-top: 16px;
    padding-bottom: 0;
  }

  .home-page .why-panel {
    margin-top: 0;
    padding: 28px 24px 88px;
    border-radius: 8px;
    background: radial-gradient(circle at 100% 0, #0d438a 0, #062b63 44%, #031b43 100%);
  }

  .home-page .why-panel .center-title {
    margin-bottom: 20px;
  }

  .home-page .why-panel .center-title h2 {
    width: 270px;
    margin: 0 auto;
    color: #fff;
    font-size: 26px;
  }

  .home-page .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.16);
  }

  .home-page .why-item {
    display: block;
    min-height: 145px;
    padding: 20px 12px 18px;
    text-align: center;
    border-top: 0;
    border-left: 1px solid rgba(255,255,255,.22);
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .home-page .why-item:nth-child(odd) {
    border-left: 0;
  }

  .home-page .why-item .icon {
    margin: 0 auto;
    width: 42px;
    height: 42px;
    background: transparent;
    color: #fff;
  }

  .home-page .why-item .icon::before {
    font-size: 34px;
  }

  .home-page .why-item h3 {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.2;
  }

  .home-page .why-item p {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.35;
  }

  .home-page .brands-strip {
    display: block;
    position: relative;
    z-index: 3;
    width: calc(100% - 48px);
    min-height: 176px;
    margin: -62px auto 0;
    border-radius: 16px;
    overflow: hidden;
  }

  .home-page .brands {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 18px;
    padding: 28px 24px 16px;
    font-size: 18px;
    text-align: center;
  }

  .home-page .brands::before {
    content: "Tüm Marka ve Modellerde Hizmet";
    grid-column: 1 / -1;
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
  }

  .home-page .izmir-img {
    min-height: 0;
    height: 0;
  }

  .home-page #bolgeler {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .home-page .districts {
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .home-page .split-title {
    margin-bottom: 16px;
  }

  .home-page .split-title h2 {
    font-size: 24px;
  }

  .home-page .district-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .home-page .pill {
    min-height: 39px;
    border-radius: 6px;
    font-size: 10px;
    gap: 5px;
  }

  .home-page .inline-icon::before {
    font-size: 13px;
  }

  .home-page .districts::after {
    content: "";
    display: block;
    height: 190px;
    margin: 16px -24px 0;
    background-image: url("assets/izmir-mobile.png");
    background-size: cover;
    background-position: center;
  }

  .home-page .cta-card {
    grid-template-columns: 74px 1fr;
    gap: 16px;
    margin-top: -6px;
    padding: 24px 22px;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(6, 43, 99, .13);
  }

  .home-page .cta-card .icon {
    width: 62px;
    height: 62px;
  }

  .home-page .cta-card h2 {
    font-size: 17px;
    line-height: 1.25;
  }

  .home-page .cta-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  .home-page .cta-card .btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
  }

  .home-page .cta-card .btn {
    min-height: 40px;
    padding: 0 8px;
    font-size: 11px;
  }

  .home-page .reviews {
    padding-top: 32px;
    padding-bottom: 44px;
  }

  .home-page .review-grid {
    display: flex;
    gap: 16px;
    width: calc(100% + 24px);
    margin-left: -12px;
    padding: 0 12px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-page .review-grid::-webkit-scrollbar {
    display: none;
  }

  .home-page .review {
    flex: 0 0 calc(100% - 24px);
    width: auto;
    margin: 0;
    padding: 24px 24px 22px;
    border-radius: 8px;
    scroll-snap-align: center;
  }

  .home-page .review::after {
    display: none;
  }

  .home-page .footer {
    padding-bottom: 72px;
  }

  .home-page .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 30px 0 18px;
  }

  .home-page .footer-inner > div:first-child,
  .home-page .footer-inner > div:nth-child(5) {
    grid-column: 1 / -1;
  }

  .home-page .footer .logo-mark {
    width: 36px;
    height: 36px;
    border-width: 5px;
  }

  .home-page .footer .logo-title {
    font-size: 20px;
  }

  .home-page .footer .logo-sub {
    font-size: 10px;
  }

  .home-page .footer p,
  .home-page .footer li,
  .home-page .footer-bottom {
    font-size: 11px;
    line-height: 1.45;
  }

  .home-page .footer h3 {
    font-size: 12px;
  }

  .home-page .footer ul {
    gap: 7px;
  }

  .home-page .footer-inner > div:nth-child(5) {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .home-page .footer-inner > div:nth-child(5) .icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.08);
    color: #fff;
  }

  .home-page .footer-bottom {
    padding: 12px 22px;
  }
}

.compact-footer{background:#062b63;color:#fff;padding:24px 20px}.compact-footer-inner{max-width:1180px;margin:0 auto;display:flex;flex-wrap:wrap;align-items:center;gap:12px 22px}.compact-footer a{color:#fff;text-decoration:none}.compact-footer nav{display:flex;gap:14px}.compact-footer small{flex-basis:100%;opacity:.78}@media(max-width:720px){.compact-footer-inner{align-items:flex-start;flex-direction:column}.compact-footer nav{flex-wrap:wrap}}


/* Content depth and AIO/GEO enhancements */
.content-cluster{display:grid;gap:24px}.answer-panel{border-left:5px solid var(--blue,#0a5aa8)}.answer-panel .eyebrow{display:block;margin-bottom:8px}.info-grid,.process-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.process-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.info-card,.process-grid article{background:#fff;border:1px solid #dfe7f1;border-radius:18px;padding:24px;box-shadow:0 10px 30px rgba(6,43,99,.07)}.info-card h3,.process-grid h3{margin:0 0 10px;color:#062b63;font-size:1.08rem}.info-card p,.process-grid p{margin:0;color:#4f5f70;line-height:1.7}.info-card .check-list{margin-top:0}.process-grid article>strong{display:inline-grid;place-items:center;width:42px;height:42px;margin-bottom:14px;border-radius:50%;background:#e9f3ff;color:#07539b}.warning-panel{padding:24px;border:1px solid #f0c980;border-left:5px solid #e29b21;border-radius:16px;background:#fff9ed}.warning-panel h2{margin:0 0 8px;color:#6d4300;font-size:1.25rem}.warning-panel p{margin:0;color:#5f5140;line-height:1.7}.local-guide{margin:26px 0}.section-note{text-align:center;margin:-12px 0 28px}.article-trust{margin:0 0 20px;padding:16px 20px;border:1px solid #dfe7f1;border-radius:14px;background:#f7fbff;color:#42566c;line-height:1.6}.article-trust p{margin:6px 0 0}.review-archive .review-grid{margin-top:24px}
@media(max-width:900px){.info-grid,.process-grid{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.info-grid,.process-grid{grid-template-columns:1fr}.info-card,.process-grid article{padding:20px}}
