:root {
  --ink: #08152e;
  --navy: #102040;
  --navy-2: #142a5c;
  --blue: #2040a0;
  --blue-2: #2b58b8;
  --cyan: #16a9d8;
  --green: #0aa646;
  --amber: #f0bd3d;
  --danger: #d9212b;
  --muted: #64748b;
  --line: #d9e2f0;
  --line-strong: #bccae0;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --soft-2: #eaf0f8;
  --shadow-sm: 0 10px 28px rgba(16, 32, 64, 0.08);
  --shadow-md: 0 22px 56px rgba(16, 32, 64, 0.14);
  --shadow-lg: 0 34px 90px rgba(5, 16, 38, 0.22);
  --radius: 8px;
  --header-height: 130px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 34%, #eef4fb 100%);
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(16, 32, 64, 0.12);
}

.top-strip {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background:
    linear-gradient(90deg, #07152f 0%, var(--navy) 44%, #0b3c64 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.strip-grid {
  min-height: 38px;
  display: grid;
  grid-template-columns: repeat(3, max-content) 1fr;
  align-items: center;
  gap: 24px;
}

.top-strip span,
.social-links,
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-strip svg,
.social-links svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.social-links {
  justify-self: end;
  gap: 10px;
}

.social-links a {
  width: 30px;
  height: 30px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
}

.main-nav {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 226, 240, 0.82);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  min-width: 288px;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: min(300px, 100%);
  max-height: 68px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(16, 32, 64, 0.1));
}

.nav-links {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(217, 226, 240, 0.82);
  border-radius: var(--radius);
  background: rgba(244, 247, 251, 0.84);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  color: #273750;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 8px 18px rgba(16, 32, 64, 0.08);
}

.nav-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 900;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 38px rgba(32, 64, 160, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-call::before,
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 42%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 500ms ease;
}

.nav-call:hover,
.btn:hover,
.nav-call:focus-visible,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(32, 64, 160, 0.32);
  filter: saturate(1.06);
}

.nav-call:hover::before,
.btn:hover::before,
.nav-call:focus-visible::before,
.btn:focus-visible::before {
  transform: translateX(130%);
}

.nav-call {
  width: 198px;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--blue-2), var(--navy));
}

.nav-call svg,
.btn svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  stroke-width: 2.3;
}

.nav-call span,
.btn span {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.nav-call strong {
  line-height: 1.05;
}

.nav-call small,
.btn small {
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.9;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow-sm);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 584px;
  color: #fff;
  background: #08152e;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  z-index: -3;
  background-image: url("assets/hero-appliances.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero::after {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 18, 42, 0.98) 0%, rgba(12, 30, 68, 0.92) 40%, rgba(18, 53, 108, 0.56) 67%, rgba(8, 21, 46, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 166, 70, 0.14) 0%, transparent 34%, rgba(22, 169, 216, 0.16) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 584px;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
  align-items: center;
  gap: 30px;
  padding-block: 48px 42px;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 30px auto 36px -26px;
  width: min(700px, 68vw);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  z-index: -1;
}

.hero-copy {
  min-width: 0;
  max-width: 680px;
  padding: 26px 0;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #d7eff8;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  display: grid;
  gap: 3px;
  color: #fff;
  font-size: 72px;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  color: #83d8f0;
}

.hero h1 span:nth-child(3) {
  color: #ffffff;
  font-size: 52px;
}

.hero-lead {
  max-width: 590px;
  margin: 18px 0 22px;
  color: #d6e3f3;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-width: min(232px, 100%);
  padding: 12px 18px;
}

.btn-primary {
  background: linear-gradient(135deg, #2c66e3, var(--blue), var(--navy));
}

.btn-whatsapp {
  background: linear-gradient(135deg, #18c45a, #08923c);
  box-shadow: 0 18px 38px rgba(10, 166, 70, 0.22);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  box-shadow: 0 24px 48px rgba(10, 166, 70, 0.3);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 24px;
}

.trust-row span {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: #eaf2fb;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

.trust-row svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: #7dd8ee;
  stroke-width: 2.2;
}

.trust-row strong {
  display: block;
  color: #fff;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 340px;
  pointer-events: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 52px;
  width: min(360px, 34vw);
  height: 154px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-visual::after {
  content: "7/24 Hizmet";
  position: absolute;
  right: 28px;
  bottom: 96px;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-visual img {
  display: none;
}

.seal {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: 8px;
  width: 146px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  background:
    conic-gradient(from 18deg, #f1c84f, #2b58b8, #16a9d8, #f1c84f),
    var(--navy);
  box-shadow: var(--shadow-lg);
  text-transform: uppercase;
}

.seal::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: rgba(8, 21, 46, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  z-index: -1;
}

.seal svg {
  width: 30px;
  height: 30px;
  color: var(--amber);
}

.seal strong {
  font-size: 18px;
  line-height: 1;
}

.seal span {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 900;
}

.section {
  position: relative;
  padding: 70px 0;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading span::before,
.section-heading span::after {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.5;
}

.section-heading h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 122px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--blue));
}

.services {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

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

.service-card {
  position: relative;
  min-height: 252px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 240, 0.95);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--blue));
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(32, 64, 160, 0.28);
  box-shadow: var(--shadow-md);
}

.service-card svg {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  padding: 10px;
  border-radius: var(--radius);
  color: var(--blue);
  background: #edf4ff;
  box-shadow: inset 0 0 0 1px #d8e5fb;
  stroke-width: 1.8;
}

.service-card h3 {
  min-height: 44px;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: #34435b;
  font-size: 15px;
  line-height: 1.62;
}

.brand-band {
  position: relative;
  overflow: hidden;
  padding: 62px 0 52px;
  scroll-margin-top: calc(var(--header-height) + 16px);
  color: #fff;
  background:
    linear-gradient(135deg, #07152f 0%, var(--navy) 36%, var(--blue) 74%, #0a1733 100%);
}

.brand-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.brand-band > .container {
  position: relative;
  z-index: 1;
}

.section-heading.dark span,
.section-heading.dark h2 {
  color: #fff;
}

.section-heading.dark h2::after {
  background: linear-gradient(90deg, var(--amber), #fff, var(--cyan));
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.brand-card {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.2);
}

.brand-card img {
  width: 100%;
  max-width: 158px;
  max-height: 44px;
  object-fit: contain;
}

.brand-card-aeg img,
.brand-card-hoover img {
  width: auto;
  max-width: none;
  height: 54px;
  max-height: 54px;
}

.brand-card-lg img {
  width: auto;
  max-width: none;
  height: 60px;
  max-height: 60px;
}

.brand-card-ugur img {
  max-width: 168px;
  max-height: 52px;
  transform: scale(1.12);
}

.brand-card-electrolux img,
.brand-card-luxell img {
  max-width: 180px;
  max-height: 52px;
  transform: scale(1.12);
}

.brand-card:nth-child(3) img,
.brand-card:nth-child(10) img,
.brand-card:nth-child(22) img,
.brand-card:nth-child(24) img {
  max-height: 44px;
}

.brand-note {
  width: fit-content;
  max-width: 100%;
  margin: 22px auto 0;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #eaf4ff;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

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

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 240, 0.96);
  border-radius: var(--radius);
  background: #edf4f9;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 58%, rgba(8, 21, 46, 0.38) 100%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(32, 64, 160, 0.3);
  box-shadow: var(--shadow-md);
  outline: 0;
}

.gallery-item:hover::before,
.gallery-item:focus-visible::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(5, 16, 38, 0.88);
  backdrop-filter: blur(12px);
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox img {
  width: auto;
  max-width: min(920px, 100%);
  max-height: min(86vh, 980px);
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}

.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.gallery-lightbox-close svg {
  width: 24px;
  height: 24px;
}

body.gallery-open {
  overflow: hidden;
}

.info-section {
  background:
    linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.72fr);
  gap: 18px;
}

.info-panel {
  position: relative;
  min-height: 338px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 240, 0.96);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-sm);
}

.info-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}

.info-panel > svg {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  padding: 9px;
  border-radius: var(--radius);
  color: var(--blue);
  background: #edf4ff;
  box-shadow: inset 0 0 0 1px #d8e5fb;
}

.info-panel h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.13;
  text-transform: uppercase;
}

.info-panel p {
  margin: 0;
  color: #34435b;
  font-size: 16px;
  line-height: 1.68;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(480px, 1.42fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 28px;
  min-height: 390px;
}

.contact-panel > svg,
.contact-panel h2,
.contact-list {
  grid-column: 1;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.contact-list a,
.contact-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-list svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  color: var(--blue);
}

.contact-list li:nth-child(2) svg {
  color: var(--green);
}

.map-card {
  grid-column: 2;
  grid-row: 1 / -1;
  min-height: 330px;
  align-self: stretch;
  overflow: hidden;
  position: relative;
  border: 1px solid #c8d5e8;
  border-radius: var(--radius);
  background: #edf4f9;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
}

.footer-cta {
  color: #fff;
  background:
    linear-gradient(135deg, #07152f 0%, var(--navy) 44%, var(--blue) 100%);
}

.footer-grid {
  min-height: 122px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.footer-copy {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-copy svg {
  width: 52px;
  height: 52px;
  color: #8de1f4;
}

.footer-copy p {
  margin: 0;
}

.footer-copy strong,
.footer-copy span {
  display: block;
}

.footer-copy strong {
  font-size: 25px;
  line-height: 1.08;
  text-transform: uppercase;
}

.footer-copy span {
  margin-top: 4px;
  color: #dbe7f6;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1120px) {
  :root {
    --header-height: 120px;
  }

  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .social-links {
    display: none;
  }

  .nav-inner {
    grid-template-columns: auto auto;
    min-height: 82px;
  }

  .brand {
    min-width: 230px;
  }

  .brand-logo {
    width: 230px;
    max-height: 62px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    margin-bottom: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-call {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: 548px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.68fr) minmax(160px, 0.32fr);
  }

  .hero-grid::before {
    width: min(720px, 76vw);
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero h1 span:nth-child(3) {
    font-size: 42px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

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

  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: minmax(210px, 0.6fr) minmax(0, 1.4fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 24px;
  }

  .footer-copy {
    grid-column: 1 / -1;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 114px;
  }

  body {
    padding-bottom: 74px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .top-strip {
    font-size: 12px;
  }

  .strip-grid {
    min-height: 36px;
    padding-block: 6px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .strip-grid::-webkit-scrollbar {
    display: none;
  }

  .top-strip span {
    flex: 0 0 auto;
  }

  .nav-inner {
    min-height: 76px;
  }

  .brand {
    min-width: 206px;
  }

  .brand-logo {
    width: 206px;
    max-height: 54px;
  }

  .nav-links {
    align-items: stretch;
    gap: 8px;
    padding: 8px;
  }

  .nav-links a {
    flex: 1 1 42%;
    justify-content: center;
    min-height: 42px;
    padding-inline: 10px;
    background: #fff;
    text-align: center;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero::before {
    background-position: 66% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(6, 18, 42, 0.98) 0%, rgba(9, 25, 57, 0.94) 60%, rgba(13, 42, 86, 0.66) 100%),
      linear-gradient(180deg, rgba(10, 166, 70, 0.12) 0%, transparent 52%, rgba(22, 169, 216, 0.16) 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 30px 24px;
  }

  .hero-grid::before {
    inset: 14px -8px 16px -8px;
    width: auto;
  }

  .hero-copy {
    max-width: calc(100% - 92px);
    padding: 4px 0;
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 14px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero h1 span:nth-child(3) {
    font-size: 33px;
  }

  .hero-lead {
    max-width: 340px;
    margin: 14px 0 16px;
    font-size: 16px;
    line-height: 1.46;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    width: 100%;
  }

  .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 10px 7px;
    gap: 6px;
  }

  .btn svg {
    width: 20px;
    height: 20px;
  }

  .btn span {
    min-width: 0;
    font-size: 11px;
    white-space: nowrap;
  }

  .btn small {
    font-size: 9px;
  }

  .trust-row {
    grid-template-columns: repeat(4, minmax(136px, 1fr));
    gap: 8px;
    margin-top: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .trust-row::-webkit-scrollbar {
    display: none;
  }

  .trust-row span {
    min-height: 62px;
    padding: 10px;
    font-size: 10px;
  }

  .trust-row svg {
    width: 26px;
    height: 26px;
  }

  .trust-row strong {
    font-size: 12px;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .hero-visual::before,
  .hero-visual::after {
    display: none;
  }

  .seal {
    top: 14px;
    right: 0;
    width: 84px;
  }

  .seal::before {
    inset: 7px;
  }

  .seal svg {
    width: 20px;
    height: 20px;
  }

  .seal strong {
    font-size: 12px;
  }

  .seal span {
    font-size: 8px;
  }

  .section {
    padding: 46px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading span::before,
  .section-heading span::after {
    width: 22px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .service-grid,
  .brand-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-card {
    min-height: 230px;
    padding: 24px 16px 20px;
  }

  .service-card svg {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
  }

  .service-card h3 {
    min-height: 38px;
    font-size: 14px;
  }

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

  .brand-band {
    padding: 48px 0 42px;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .brand-card {
    min-height: 60px;
    padding: 10px 12px;
  }

  .brand-card img {
    max-height: 34px;
  }

  .brand-card-aeg img,
  .brand-card-hoover img {
    height: 42px;
    max-height: 42px;
  }

  .brand-card-lg img {
    height: 46px;
    max-height: 46px;
  }

  .brand-card-ugur img {
    max-width: 132px;
    max-height: 40px;
    transform: scale(1.08);
  }

  .brand-card-electrolux img,
  .brand-card-luxell img {
    max-width: 140px;
    max-height: 40px;
    transform: scale(1.08);
  }

  .info-panel {
    min-height: auto;
    padding: 24px;
  }

  .contact-panel {
    display: block;
  }

  .map-card {
    min-height: 280px;
    margin-top: 20px;
  }

  .footer-cta {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 40;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: var(--radius);
    background: rgba(7, 21, 47, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  }

  .mobile-action-bar a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 6px;
    color: #fff;
    font-weight: 950;
  }

  .mobile-action-bar a:first-child {
    background: linear-gradient(135deg, var(--blue-2), var(--blue));
  }

  .mobile-action-bar a:last-child {
    background: linear-gradient(135deg, #18c45a, #078935);
  }

  .mobile-action-bar svg {
    width: 21px;
    height: 21px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .brand {
    min-width: 174px;
  }

  .brand-logo {
    width: 174px;
    max-height: 48px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-copy {
    max-width: calc(100% - 82px);
  }

  .hero-grid {
    padding-block: 24px 20px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero h1 span:nth-child(3) {
    font-size: 27px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section-heading h2 {
    font-size: 26px;
  }
}

@media (max-width: 340px) {
  .brand {
    min-width: 158px;
  }

  .brand-logo {
    width: 158px;
  }

  .seal {
    display: none;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
