:root {
  --mj-blue: #075fd8;
  --mj-blue-dark: #064aa8;
  --mj-ink: #0d1524;
  --mj-muted: #647083;
  --mj-line: #dfe6f1;
  --mj-soft: #f4f8ff;
  --mj-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--mj-ink);
  background: var(--mj-white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.mj-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.mj-topbar {
  background: #071121;
  color: #dce8fa;
  font-size: 13px;
}

.mj-topbar .mj-container,
.mj-header .mj-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mj-topbar .mj-container {
  min-height: 34px;
  justify-content: center;
  text-align: center;
}

.mj-topbar-links,
.mj-nav,
.mj-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mj-topbar-seo {
  margin: 0;
  color: #eaf2ff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.mj-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--mj-line);
  backdrop-filter: blur(14px);
}

.mj-header .mj-container {
  min-height: 72px;
}

.mj-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.mj-logo img {
  width: 192px;
  height: auto;
}

.mj-nav a {
  color: #1c2635;
  font-weight: 700;
  font-size: 14px;
  padding: 25px 0;
  border-bottom: 3px solid transparent;
}

.mj-actions .mj-contact-icon {
  width: 40px;
  height: 40px;
}

.mj-actions .mj-contact-icon img {
  width: 19px;
  height: 19px;
}

.mj-actions .mj-btn {
  min-height: 40px;
  padding: 0 18px;
  font-size: 13px;
}

.mj-nav a:hover,
.mj-nav a.is-active {
  color: var(--mj-blue);
  border-color: var(--mj-blue);
}

.mj-phone {
  color: #111827;
  font-weight: 800;
  white-space: nowrap;
}

.mj-contact-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mj-contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--mj-line);
  background: #fff;
  transition: 0.2s ease;
}

.mj-contact-icon:hover {
  border-color: var(--mj-blue);
  transform: translateY(-1px);
}

.mj-contact-icon img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.mj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--mj-blue);
  background: var(--mj-blue);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: 0.2s ease;
}

.mj-btn:hover {
  background: var(--mj-blue-dark);
  border-color: var(--mj-blue-dark);
}

.mj-btn.mj-btn-light {
  color: var(--mj-blue);
  background: #fff;
}

.mj-btn.mj-btn-dark {
  border-color: #071121;
  background: #071121;
}

.mj-btn-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.mj-whatsapp-btn {
  gap: 9px;
}

.mj-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--mj-line);
  background: #fff;
  color: var(--mj-ink);
  font-size: 22px;
}

.mj-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  background: rgba(7, 17, 33, 0.72);
}

.mj-mobile-nav.is-open {
  display: block;
}

.mj-mobile-nav-panel {
  position: absolute;
  inset: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 28px 22px 24px;
  background: #fff;
  box-shadow: 0 26px 90px rgba(7, 17, 33, 0.26);
}

.mj-mobile-nav-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--mj-line);
  background: #f7fbff;
  color: #071121;
  font-size: 28px;
  line-height: 1;
}

.mj-mobile-nav-logo img {
  width: 198px;
  height: auto;
}

.mj-mobile-nav-links {
  width: 100%;
  display: grid;
  gap: 10px;
  margin-top: 6px;
  text-align: center;
}

.mj-mobile-nav-links a {
  display: block;
  padding: 14px 16px;
  border: 1px solid #dfe8f5;
  background: #f7fbff;
  color: #152033;
  font-size: 18px;
  font-weight: 850;
}

.mj-mobile-nav-links a.is-active {
  border-color: var(--mj-blue);
  background: #eaf3ff;
  color: var(--mj-blue);
}

.mj-mobile-nav-cta {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 1px solid var(--mj-blue);
  background: var(--mj-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mj-mobile-nav-cta:hover {
  color: #fff;
}

.mj-mobile-nav-actions {
  width: 100%;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--mj-line);
}

.mj-mobile-nav-actions .mj-contact-icons {
  justify-content: center;
  gap: 12px;
}

.mj-mobile-nav-actions .mj-contact-icon {
  width: 54px;
  height: 54px;
  background: #f7fbff;
}

.mj-mobile-intro {
  display: none;
}

.mj-lead-filter {
  position: relative;
  z-index: 20;
  background: linear-gradient(90deg, #f8fbff 0%, #ffffff 55%, #eef6ff 100%);
  border-bottom: 1px solid var(--mj-line);
}

.mj-lead-filter .mj-container {
  display: grid;
  grid-template-columns: 1.2fr 2.8fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}

.mj-filter-title strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.mj-filter-title span {
  display: block;
  margin-top: 4px;
  color: var(--mj-muted);
  font-size: 13px;
}

.mj-filter-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mj-filter-field {
  display: grid;
}

.mj-filter-field span {
  display: none;
}

.mj-mobile-quick-form {
  display: none;
}

.mj-field,
.mj-upload {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--mj-line);
  background: #fff;
  padding: 0 14px;
  color: #475569;
  font: inherit;
  font-size: 14px;
}

.mj-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mj-blue);
  font-weight: 800;
}

.mj-hero {
  overflow: hidden;
  position: relative;
  padding: 82px 0 92px;
}

.mj-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 60px;
}

.mj-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--mj-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mj-eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--mj-blue);
}

.mj-hero h1,
.mj-page-hero h1 {
  margin: 0;
  color: #071121;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.mj-hero h1 span,
.mj-blue {
  color: var(--mj-blue);
}

.mj-hero p,
.mj-page-hero p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--mj-muted);
  font-size: 18px;
  line-height: 1.7;
}

.mj-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}

.mj-proof span {
  border: 1px solid var(--mj-line);
  background: #fff;
  padding: 10px 14px;
  color: #213047;
  font-weight: 800;
  font-size: 14px;
}

.mj-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.mj-hero-media {
  position: relative;
  min-height: 570px;
}

.mj-hero-media::before {
  content: "";
  position: absolute;
  inset: 36px auto auto -28px;
  width: 330px;
  height: 330px;
  border: 2px solid rgba(7, 95, 216, 0.28);
  border-radius: 50%;
}

.mj-hero-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 78%;
  height: 520px;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
}

.mj-hero-inset {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46%;
  height: 260px;
  object-fit: cover;
  border: 12px solid #fff;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.18);
}

.mj-badge {
  position: absolute;
  right: 40px;
  bottom: 30px;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--mj-blue);
  color: #fff;
  font-size: 34px;
  font-weight: 950;
  border: 6px solid #fff;
}

.mj-quality-badge {
  width: 118px;
  height: 118px;
  padding: 16px;
  text-align: center;
  font-size: 15px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mj-quality-badge strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}

.mj-guarantee-seal {
  position: absolute;
  right: 30px;
  bottom: 22px;
  width: 132px;
  height: 132px;
  filter: drop-shadow(0 18px 34px rgba(7, 17, 33, 0.26));
}

.mj-consult-slide {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 420px;
  background: #071121;
  color: #fff;
}

.mj-consult-slide img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.76;
}

.mj-consult-content {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 5vw, 68px);
}

.mj-consult-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.mj-consult-content p {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.mj-consult-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.18);
}

.mj-consult-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 118px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: #071121;
  font-weight: 950;
}

.mj-consult-action span {
  display: block;
  margin-top: 6px;
  color: var(--mj-muted);
  font-weight: 700;
  font-size: 14px;
}

.mj-consult-action b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--mj-blue);
  color: #fff;
}

.mj-section {
  padding: 96px 0;
}

.mj-section-soft {
  background: var(--mj-soft);
}

.mj-section-dark {
  background: #071121;
  color: #fff;
}

.mj-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.mj-section-head h2,
.mj-section-title {
  margin: 0;
  color: #071121;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.mj-section-dark .mj-section-head h2,
.mj-section-dark .mj-section-title {
  color: #fff;
}

.mj-section-head p,
.mj-section-copy {
  max-width: 540px;
  color: var(--mj-muted);
  line-height: 1.7;
  font-size: 16px;
}

.mj-about-preview {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 52%, #f1f7ff 52%, #f1f7ff 100%);
}

.mj-about-preview .mj-two-col {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.mj-about-mosaic {
  position: relative;
  min-height: 520px;
}

.mj-about-mosaic img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.14);
}

.mj-about-mosaic img:first-child {
  left: 0;
  top: 26px;
  width: 72%;
  height: 410px;
}

.mj-about-mosaic img:last-child {
  right: 0;
  bottom: 16px;
  width: 44%;
  height: 270px;
  border: 12px solid #fff;
}

.mj-question-banner {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: grid;
  grid-template-columns: 0.9fr 1.35fr 0.75fr;
  align-items: center;
  gap: 28px;
  background:
    radial-gradient(circle at 55% 48%, rgba(44, 130, 255, 0.22), transparent 28%),
    linear-gradient(110deg, #071121 0%, #06202c 100%);
  color: #fff;
  padding: clamp(28px, 5vw, 56px);
}

.mj-question-banner::before {
  content: "";
  position: absolute;
  inset: 44px 26% 36px;
  opacity: 0.18;
  background-image: radial-gradient(circle, #8fbfff 1.4px, transparent 1.5px);
  background-size: 18px 18px;
}

.mj-question-visual,
.mj-question-side {
  position: relative;
  z-index: 1;
}

.mj-question-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  clip-path: polygon(0 13%, 100% 0, 90% 100%, 0 88%);
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.28));
}

.mj-question-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.mj-question-content span {
  display: block;
  margin-bottom: 14px;
  color: #8db9ff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mj-question-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}

.mj-question-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.mj-question-side {
  align-self: end;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.mj-question-side img {
  width: min(170px, 72%);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.3));
}

.mj-question-side p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.mj-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--mj-line);
  border: 1px solid var(--mj-line);
}

.mj-step {
  min-height: 230px;
  background: #fff;
  padding: 30px;
}

.mj-step b {
  display: block;
  color: var(--mj-blue);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 30px;
}

.mj-step h3,
.mj-service h3,
.mj-project-card h3 {
  margin: 0 0 12px;
  color: #071121;
  font-size: 22px;
}

.mj-step p,
.mj-service p,
.mj-project-card p {
  margin: 0;
  color: var(--mj-muted);
  line-height: 1.65;
}

.mj-services {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
}

.mj-service-feature,
.mj-service {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--mj-line);
}

.mj-service-feature img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.mj-service-feature .mj-service-body {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  background: rgba(255, 255, 255, 0.94);
  padding: 28px;
}

.mj-service-list {
  display: grid;
  gap: 16px;
}

.mj-service {
  display: grid;
  grid-template-columns: 142px 1fr;
  align-items: center;
}

.mj-service img {
  width: 142px;
  height: 138px;
  object-fit: cover;
}

.mj-service div {
  padding: 22px;
}

.mj-num {
  display: inline-block;
  color: var(--mj-blue);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mj-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mj-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--mj-line);
  color: #344055;
  font-weight: 800;
  font-size: 14px;
}

.mj-tabs .is-active {
  background: var(--mj-blue);
  border-color: var(--mj-blue);
  color: #fff;
}

.mj-project-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.mj-projects-six {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mj-projects-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 430px);
  gap: 22px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
}

.mj-projects-strip::-webkit-scrollbar {
  height: 8px;
}

.mj-projects-strip::-webkit-scrollbar-track {
  background: #e8eef7;
}

.mj-projects-strip::-webkit-scrollbar-thumb {
  background: var(--mj-blue);
}

.mj-projects-strip .mj-project-card {
  min-height: 410px;
  scroll-snap-align: start;
}

.mj-project-stack {
  display: grid;
  gap: 24px;
}

.mj-project-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background: #071121;
}

.mj-project-card > a {
  display: block;
  min-height: inherit;
  color: inherit;
}

.mj-project-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(7, 17, 33, 0) 0%, rgba(7, 17, 33, 0.82) 43%, rgba(7, 17, 33, 0.98) 100%);
  pointer-events: none;
  z-index: 1;
}

.mj-projects-six .mj-project-card {
  min-height: 430px;
}

.mj-project-card.mj-large {
  min-height: 684px;
}

.mj-project-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.35s ease;
}

.mj-project-card:hover img {
  transform: scale(1.04);
}

.mj-project-info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 72px;
  color: #fff;
  z-index: 2;
}

.mj-project-info-action {
  bottom: 24px;
  left: 24px;
  right: auto;
  z-index: 3;
  pointer-events: none;
}

.mj-project-info-action .mj-card-link {
  pointer-events: auto;
  margin-top: 0;
}

.mj-project-info h3,
.mj-project-info p {
  color: #fff;
}

.mj-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 14px;
  background: var(--mj-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.mj-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #fff;
  font-weight: 900;
}

.mj-project-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
}

.mj-project-kicker a {
  color: var(--mj-blue);
  font-weight: 950;
}

.mj-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--mj-line);
}

.mj-stat {
  padding: 34px 28px;
  border-right: 1px solid var(--mj-line);
}

.mj-stat:last-child {
  border-right: 0;
}

.mj-stat strong {
  display: block;
  color: var(--mj-blue);
  font-size: 44px;
  line-height: 1;
}

.mj-stat span {
  display: block;
  margin-top: 10px;
  color: var(--mj-muted);
  font-weight: 800;
}

.mj-why-section {
  background:
    linear-gradient(125deg, rgba(7, 17, 33, 0.96), rgba(6, 74, 168, 0.9)),
    url("../img/mj-projects/virtuves-mebeles-tumsa-koks.webp") center / cover;
  color: #fff;
}

.mj-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.mj-why-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.mj-why-copy p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.mj-why-copy ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.mj-why-copy li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
  font-weight: 750;
}

.mj-why-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 5px var(--mj-blue);
}

.mj-why-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mj-why-card {
  min-height: 178px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.mj-why-card:nth-child(2),
.mj-why-card:nth-child(4) {
  transform: translateY(28px);
}

.mj-why-card strong {
  display: block;
  color: var(--mj-blue);
  font-size: 52px;
  line-height: 1;
}

.mj-why-card span {
  display: block;
  margin-top: 16px;
  color: #1f2a3c;
  font-weight: 900;
}

.mj-logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--mj-line);
  border: 1px solid var(--mj-line);
}

.mj-logo-cell {
  min-height: 104px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #1f2937;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mj-logo-cell img {
  width: min(150px, 76%);
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
  transition: 0.2s ease;
}

.mj-logo-cell.mj-logo-wide img {
  width: min(170px, 82%);
  max-height: 52px;
}

.mj-logo-cell:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.mj-faq {
  display: grid;
  gap: 12px;
}

.mj-faq details {
  border: 1px solid var(--mj-line);
  background: #fff;
  padding: 0 24px;
}

.mj-faq summary {
  cursor: pointer;
  padding: 22px 0;
  color: #071121;
  font-weight: 900;
  list-style: none;
}

.mj-faq summary::-webkit-details-marker {
  display: none;
}

.mj-faq p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--mj-muted);
  line-height: 1.7;
}

.mj-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 46px;
  background: var(--mj-blue);
  color: #fff;
}

.mj-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.mj-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.mj-footer {
  background: #071121;
  color: #d7e1ef;
  padding: 70px 0 28px;
}

.mj-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 36px;
  align-items: start;
}

.mj-footer img {
  width: 210px;
  background: transparent;
  padding: 0;
}

.mj-footer .mj-footer-logo {
  width: 230px;
}

.mj-footer-brand {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
}

.mj-footer-brand p {
  max-width: 280px;
  margin: 0 auto;
  color: rgba(238, 245, 255, 0.82);
  font-weight: 400 !important;
}

.mj-footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
}

.mj-footer p,
.mj-footer a {
  color: #b7c5d8;
  line-height: 1.8;
}

.mj-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mj-footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.mj-footer-social {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  transition: 0.2s ease;
}

.mj-footer-social:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.mj-footer-social img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.mj-required {
  color: var(--mj-blue);
  font-weight: 950;
}

.mj-copyright {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8da2bc;
  font-size: 14px;
}

.mj-page-hero {
  padding: 74px 0;
  background: linear-gradient(110deg, #f7fbff 0%, #ffffff 56%, #eef6ff 100%);
  border-bottom: 1px solid var(--mj-line);
}

.mj-page-hero-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  min-height: 155px;
  padding: 28px 0 24px;
  background: #071121 center / cover no-repeat;
  border-bottom: 0;
  color: #fff;
}

.mj-page-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 33, 0.88), rgba(7, 17, 33, 0.48), rgba(7, 17, 33, 0.2));
}

.mj-page-hero-image .mj-container {
  position: relative;
  z-index: 1;
}

.mj-page-hero-image h1,
.mj-page-hero-image p {
  color: #fff;
}

.mj-page-hero-image h1 {
  max-width: 860px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.mj-page-hero-image p {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.55;
}

.mj-page-hero-image .mj-eyebrow {
  color: #8db9ff;
}

.mj-page-about-hero {
  background-image: url("../img/mj-projects/individuala-virtuve-madona-gatava.webp");
}

.mj-page-services-hero {
  background-image: url("../img/mj-projects/virtuves-mebeles-premium-sala.webp");
}

.mj-page-contact-hero {
  background-image: url("../img/mj-projects/prieksnama-mebeles-pec-pasutijuma-spogulis.webp");
}

.mj-page-quote-hero {
  background-image: url("../img/mj-projects/virtuves-mebeles-pec-pasutijuma-gaisa-virtuve.webp");
}

.mj-page-projects-hero {
  background-image: url("../img/mj-projects/virtuves-mebeles-pec-pasutijuma-gaisa-virtuve.webp");
}

.mj-download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border: 1px solid #cfe0f4;
  background: linear-gradient(135deg, #edf5ff 0%, #ffffff 72%);
}

.mj-download-panel h2 {
  margin: 0 0 10px;
  color: #071121;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.mj-download-panel p {
  margin: 0;
  color: var(--mj-muted);
  line-height: 1.7;
  max-width: 720px;
}

.mj-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.mj-image-pair {
  position: relative;
  min-height: 500px;
}

.mj-image-pair img:first-child {
  position: absolute;
  right: 0;
  top: 0;
  width: 78%;
  height: 420px;
  object-fit: cover;
}

.mj-image-pair img:last-child {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52%;
  height: 260px;
  object-fit: cover;
  border: 12px solid #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.16);
}

.mj-contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
}

.mj-contact-card,
.mj-form-card,
.mj-info-card {
  border: 1px solid var(--mj-line);
  background: #fff;
  padding: 30px;
}

.mj-contact-section .mj-contact-card,
.mj-contact-section .mj-form-card {
  background: #eef4fb;
  border-color: #c7d8ec;
  box-shadow: 0 24px 60px rgba(7, 17, 33, 0.08);
}

.mj-contact-section .mj-contact-card {
  display: grid;
  gap: 0;
  align-content: start;
}

.mj-contact-section .mj-form-card {
  background: #f7fbff;
}

.mj-contact-map {
  overflow: hidden;
  min-height: 210px;
  border: 1px solid #c7d8ec;
  background: #dbe7f5;
}

.mj-contact-map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  filter: saturate(0.92) contrast(0.96);
}

.mj-projects-intro-copy {
  max-width: 650px;
  margin: 0;
  color: var(--mj-muted);
  font-size: 17px;
  line-height: 1.7;
}

.mj-quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: start;
}

.mj-quote-aside {
  position: sticky;
  top: 116px;
  overflow: hidden;
  background: #071121;
  color: #fff;
}

.mj-quote-aside img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  opacity: 0.84;
}

.mj-quote-aside div {
  padding: 30px;
}

.mj-quote-aside h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.mj-quote-aside p,
.mj-quote-aside li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.mj-quote-aside ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.mj-quote-aside li::before {
  content: "✓";
  color: #86b7ff;
  font-weight: 900;
  margin-right: 10px;
}

.mj-form-card h2 {
  margin: 0 0 12px;
  color: #071121;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.mj-form-card > p {
  margin: 0 0 26px;
  color: var(--mj-muted);
  line-height: 1.7;
}

.mj-form-card label {
  display: grid;
  gap: 8px;
  color: #1f2a3c;
  font-weight: 850;
  font-size: 14px;
}

.mj-file-drop {
  display: grid;
  place-items: center;
  min-height: 120px;
  border: 1px dashed #9db5d7;
  background: #f8fbff;
  color: var(--mj-blue);
  font-weight: 900;
  text-align: center;
}

.mj-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(7, 17, 33, 0.62);
}

.mj-modal.is-open {
  display: grid;
}

.mj-modal-box {
  width: min(520px, 100%);
  background: #fff;
  padding: 34px;
  box-shadow: 0 28px 90px rgba(7, 17, 33, 0.26);
  text-align: center;
}

.mj-modal-box h2 {
  margin: 0 0 12px;
  color: #071121;
  font-size: 34px;
  line-height: 1.05;
}

.mj-modal-box p {
  margin: 0 0 24px;
  color: var(--mj-muted);
  line-height: 1.7;
}

.mj-contact-card {
  display: grid;
  gap: 18px;
}

.mj-contact-item {
  border-bottom: 1px solid var(--mj-line);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.mj-contact-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.mj-contact-item span {
  display: block;
  color: var(--mj-blue);
  font-weight: 950;
  margin-bottom: 6px;
}

.mj-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mj-form-grid .mj-full {
  grid-column: 1 / -1;
}

textarea.mj-field {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

.mj-detail-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: stretch;
}

.mj-detail-media {
  display: grid;
  gap: 14px;
  align-content: start;
}

.mj-detail-media > img,
.mj-detail-hero > img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.mj-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 12px;
}

.mj-detail-thumbs img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  border: 1px solid var(--mj-line);
  background: #f8fafc;
}

.mj-detail-media > img,
.mj-detail-thumbs img,
.mj-gallery img {
  cursor: zoom-in;
}

.mj-detail-panel {
  background: #071121;
  color: #fff;
  padding: 34px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}

.mj-detail-panel h1,
.mj-detail-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.mj-detail-list {
  display: grid;
  gap: 1px;
  margin: 4px 0 0;
  background: rgba(255, 255, 255, 0.14);
}

.mj-detail-list div {
  display: grid;
  grid-template-columns: minmax(120px, 152px) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  background: #071121;
}

.mj-detail-list span {
  color: #9fb3ce;
}

.mj-detail-list strong {
  text-align: right;
  line-height: 1.25;
}

.mj-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mj-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.mj-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(4, 10, 20, 0.88);
}

.mj-lightbox.is-open {
  display: flex;
}

.mj-lightbox img {
  max-width: min(1120px, 96vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.mj-lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mj-project-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.43fr);
  gap: 42px;
  align-items: start;
}

.mj-project-summary {
  position: sticky;
  top: 120px;
  border: 1px solid var(--mj-line);
  background: #fff;
  padding: 26px;
}

.mj-project-summary h2,
.mj-project-copy h1,
.mj-project-copy h2 {
  margin: 0 0 18px;
  color: #071121;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.mj-project-copy p {
  color: var(--mj-muted);
  font-size: 17px;
  line-height: 1.75;
}

.mj-spec-grid {
  display: grid;
  gap: 1px;
  margin-top: 26px;
  background: var(--mj-line);
  border: 1px solid var(--mj-line);
}

.mj-spec-grid div {
  display: grid;
  gap: 4px;
  background: #fff;
  padding: 15px;
}

.mj-spec-grid span {
  color: var(--mj-muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mj-spec-grid strong {
  color: #071121;
  font-size: 16px;
  line-height: 1.35;
}

.mj-feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.mj-feature-list li {
  position: relative;
  padding-left: 30px;
  color: #26354c;
  line-height: 1.6;
  font-weight: 750;
}

.mj-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--mj-blue);
}

@media (max-width: 1100px) {
  .mj-nav,
  .mj-actions .mj-phone,
  .mj-actions .mj-contact-icons {
    display: none;
  }

  .mj-menu {
    display: inline-grid;
    place-items: center;
  }

  .mj-lead-filter .mj-container,
  .mj-hero-grid,
  .mj-services,
  .mj-project-grid,
  .mj-two-col,
  .mj-contact-grid,
  .mj-detail-hero,
  .mj-quote-layout,
  .mj-consult-slide,
  .mj-about-preview .mj-two-col,
  .mj-question-banner,
  .mj-why-grid,
  .mj-project-story {
    grid-template-columns: 1fr;
  }

  .mj-project-summary {
    position: static;
  }

  .mj-filter-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mj-process,
  .mj-stats,
  .mj-logo-strip,
  .mj-projects-six,
  .mj-why-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mj-hero-media {
    min-height: 500px;
  }

  .mj-detail-media > img,
  .mj-detail-hero > img {
    height: 520px;
  }

  .mj-quote-layout .mj-form-card {
    order: 1;
  }

  .mj-quote-layout .mj-quote-aside {
    order: 2;
    position: static;
  }
}

@media (max-width: 720px) {
  .mj-topbar {
    display: none;
  }

  .mj-header .mj-container {
    position: relative;
    justify-content: center;
    min-height: 70px;
  }

  .mj-logo {
    min-width: auto;
    justify-content: center;
  }

  .mj-logo img {
    width: 172px;
  }

  .mj-actions {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    gap: 0;
  }

  .mj-menu {
    width: 46px;
    height: 46px;
  }

  .mj-actions .mj-btn {
    display: none;
  }

  .mj-mobile-intro {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 255, 0.96) 58%, rgba(238, 246, 255, 0.98) 100%);
    color: #071121;
  }

  .mj-mobile-home-hero {
    position: relative;
    display: grid;
    gap: 0;
    padding: 0 0 22px;
  }

  .mj-mobile-home-copy {
    position: relative;
    z-index: 2;
    order: 2;
    padding: 0;
    text-align: center;
  }

  .mj-mobile-home-copy .mj-eyebrow {
    justify-content: center;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
  }

  .mj-mobile-home-copy h1 {
    max-width: 365px;
    margin: 0 auto;
    color: #071121;
    font-size: 34px;
    line-height: 1.06;
    letter-spacing: 0;
  }

  .mj-mobile-home-copy p {
    max-width: 350px;
    margin: 14px auto 0;
    color: var(--mj-muted);
    font-size: 14px;
    line-height: 1.58;
  }

  .mj-mobile-home-copy .mj-proof {
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .mj-mobile-home-copy .mj-proof span {
    padding: 8px 10px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
  }

  .mj-mobile-home-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .mj-mobile-home-actions .mj-btn {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
  }

  .mj-mobile-home-media {
    position: relative;
    order: 1;
    z-index: 1;
    display: block;
    min-height: 288px;
    margin: 0 0 26px;
    pointer-events: none;
  }

  .mj-mobile-home-media::before {
    content: "";
    position: absolute;
    inset: 34px auto auto 4px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(7, 95, 216, 0.24);
    border-radius: 50%;
  }

  .mj-mobile-home-main {
    position: absolute;
    right: 0;
    top: 22px;
    width: 82%;
    height: 228px;
    object-fit: cover;
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
  }

  .mj-mobile-home-inset {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 53%;
    height: 124px;
    object-fit: cover;
    border: 8px solid #fff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.15);
  }

  .mj-mobile-home-media .mj-guarantee-seal {
    width: 84px;
    height: 84px;
    right: 14px;
    bottom: 16px;
  }

  .mj-mobile-quick-form {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 4px 0;
    padding: 16px 14px 14px;
    overflow: hidden;
    border: 1px solid rgba(175, 199, 230, 0.82);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 251, 255, 0.97) 100%);
    box-shadow: 0 18px 46px rgba(7, 17, 33, 0.11);
    backdrop-filter: blur(10px);
    text-align: left;
  }

  .mj-mobile-quick-form::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--mj-blue), rgba(7, 95, 216, 0.16));
  }

  .mj-mobile-form-head {
    grid-column: 1 / -1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    padding: 2px 2px 4px;
  }

  .mj-mobile-form-head strong {
    color: #071121;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.2;
  }

  .mj-mobile-form-head span {
    color: var(--mj-muted);
    font-size: 12px;
    line-height: 1.35;
    text-align: right;
  }

  .mj-mobile-quick-form .mj-filter-field {
    min-width: 0;
    padding: 9px 10px;
    border: 1px solid #dce8f6;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(7, 17, 33, 0.04);
  }

  .mj-mobile-quick-form .mj-filter-field span {
    display: block;
    margin-bottom: 3px;
    color: var(--mj-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mj-mobile-quick-form .mj-field {
    min-height: 30px;
    border: 0;
    background: transparent;
    padding: 0;
    color: #172235;
    font-size: 14px;
    font-weight: 550;
    text-align: left;
  }

  .mj-mobile-quick-form .mj-field:focus {
    outline: 0;
  }

  .mj-mobile-quick-form .mj-field::placeholder {
    color: #8793a6;
  }

  .mj-mobile-quick-form .mj-btn {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 48px;
    margin-top: 2px;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: 0;
  }

  .mj-mobile-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .mj-mobile-slider::-webkit-scrollbar {
    display: none;
  }

  .mj-mobile-slide {
    position: relative;
    min-height: 420px;
    scroll-snap-align: start;
  }

  .mj-mobile-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    opacity: 0.82;
  }

  .mj-mobile-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 17, 33, 0.05), rgba(7, 17, 33, 0.72));
  }

  .mj-mobile-copy {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 54px;
    z-index: 2;
    text-align: center;
  }

  .mj-mobile-copy span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #8db9ff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mj-mobile-copy h2 {
    margin: 0;
    color: #fff;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: none;
  }

  .mj-mobile-copy p {
    max-width: 340px;
    margin: 14px auto 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.55;
  }

  .mj-mobile-dots {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 22px;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 7px;
  }

  .mj-mobile-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
  }

  .mj-mobile-dots span:first-child {
    width: 24px;
    background: #fff;
  }

  .mj-lead-filter .mj-container {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 14px;
    width: calc(100% - 28px);
    margin: -28px auto 0;
    padding: 20px 16px;
    border: 1px solid #d7e5f5;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(7, 17, 33, 0.1);
    text-align: center;
  }

  .mj-lead-filter {
    display: none;
  }

  .mj-filter-title strong {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.18;
  }

  .mj-filter-title span {
    max-width: 280px;
    margin: 8px auto 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .mj-filter-fields {
    gap: 10px;
  }

  .mj-filter-fields .mj-field {
    min-height: 52px;
    border-color: #cfdded;
    background: #fbfdff;
    text-align: center;
    font-weight: 500;
    color: #1f2a3c;
  }

  .mj-lead-filter .mj-btn {
    width: 100%;
    min-height: 54px;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
  }

  .mj-section,
  .mj-section-soft,
  .mj-contact-section {
    text-align: center;
  }

  .mj-form-card,
  .mj-quote-aside,
  .mj-detail-panel,
  .mj-project-summary,
  .mj-contact-card {
    text-align: center;
  }

  .mj-eyebrow {
    justify-content: center;
  }

  .mj-section-head p,
  .mj-section-copy,
  .mj-projects-intro-copy,
  .mj-project-kicker p,
  .mj-form-card > p,
  .mj-quote-aside p,
  .mj-project-copy p,
  .mj-contact-item p {
    margin-left: auto;
    margin-right: auto;
  }

  .mj-form-card label {
    text-align: center;
  }

  .mj-form-card .mj-field,
  .mj-form-card textarea.mj-field,
  .mj-contact-card .mj-field {
    text-align: center;
  }

  .mj-quote-aside ul,
  .mj-feature-list,
  .mj-footer ul {
    justify-items: center;
    text-align: center;
  }

  .mj-detail-list div,
  .mj-spec-grid div {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 6px;
  }

  .mj-detail-list strong,
  .mj-spec-grid strong {
    text-align: center;
  }

  .mj-filter-fields,
  .mj-process,
  .mj-stats,
  .mj-logo-strip,
  .mj-form-grid,
  .mj-gallery,
  .mj-projects-six,
  .mj-why-stats {
    grid-template-columns: 1fr;
  }

  .mj-projects-strip {
    grid-auto-columns: minmax(280px, 86vw);
  }

  .mj-footer {
    text-align: center;
    padding: 54px 0 28px;
  }

  .mj-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }

  .mj-footer ul {
    justify-items: center;
  }

  .mj-footer-socials {
    justify-content: center;
  }

  .mj-footer p,
  .mj-footer a {
    text-align: center;
  }

  .mj-footer-brand {
    justify-items: center;
    text-align: center;
  }

  .mj-footer-brand p {
    margin: 0 auto;
  }

  .mj-hero {
    display: none;
  }

  .mj-hero h1,
  .mj-page-hero h1 {
    font-size: 42px;
  }

  .mj-page-hero-image {
    min-height: 220px;
    padding: 42px 0 34px;
    text-align: center;
  }

  .mj-page-hero-image h1 {
    font-size: 32px;
    margin-left: auto;
    margin-right: auto;
  }

  .mj-page-hero-image p {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .mj-detail-media > img,
  .mj-detail-hero > img {
    height: 420px;
  }

  .mj-detail-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mj-detail-thumbs img {
    height: 110px;
  }

  .mj-quote-layout {
    gap: 22px;
  }

  .mj-quote-aside {
    position: static;
  }

  .mj-quote-aside img {
    height: 220px;
  }

  .mj-quote-aside div,
  .mj-form-card,
  .mj-contact-card,
  .mj-info-card {
    padding: 22px 18px;
  }

  .mj-quote-layout .mj-form-card {
    margin-top: -8px;
    border-color: #c9d9ec;
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
    box-shadow: 0 22px 58px rgba(7, 17, 33, 0.12);
  }

  .mj-quote-layout .mj-form-card > p {
    max-width: 420px;
  }

  .mj-quote-layout .mj-form-card .mj-field,
  .mj-quote-layout .mj-form-card textarea.mj-field,
  .mj-quote-layout .mj-form-card select.mj-field {
    border-color: #c9d9ec;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  }

  .mj-quote-layout .mj-form-card .mj-btn {
    width: 100%;
    justify-content: center;
    min-height: 56px;
  }

  .mj-form-card h2,
  .mj-quote-aside h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .mj-form-card label {
    font-size: 14px;
  }

  .mj-field,
  .mj-upload {
    min-height: 50px;
    font-size: 15px;
  }

  textarea.mj-field {
    min-height: 120px;
  }

  .mj-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 22px;
  }

  .mj-hero-actions .mj-btn {
    width: 100%;
    justify-content: center;
  }

  .mj-contact-icons,
  .mj-question-actions,
  .mj-consult-actions,
  .mj-project-kicker {
    justify-content: center;
  }

  .mj-project-kicker {
    text-align: center;
  }

  .mj-section-head {
    gap: 20px;
    margin-bottom: 36px;
  }

  .mj-section-head .mj-btn,
  .mj-project-kicker a,
  .mj-download-panel .mj-btn {
    margin-top: 10px;
  }

  .mj-cta {
    text-align: center;
  }

  .mj-cta .mj-btn,
  .mj-download-panel .mj-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .mj-project-info,
  .mj-project-info-action {
    text-align: center;
  }

  .mj-contact-map iframe {
    height: 210px;
  }

  .mj-hero-media {
    min-height: 430px;
  }

  .mj-hero-main {
    width: 88%;
    height: 360px;
  }

  .mj-hero-inset {
    width: 58%;
    height: 180px;
  }

  .mj-badge {
    width: 72px;
    height: 72px;
    font-size: 26px;
  }

  .mj-quality-badge {
    width: 92px;
    height: 92px;
    font-size: 11px;
  }

  .mj-guarantee-seal {
    width: 92px;
    height: 92px;
    right: 12px;
    bottom: 12px;
  }

  .mj-quality-badge strong {
    font-size: 22px;
  }

  .mj-consult-actions {
    grid-template-columns: 1fr;
  }

  .mj-section {
    padding: 64px 0;
  }

  .mj-section-head,
  .mj-cta {
    display: block;
  }

  .mj-service,
  .mj-footer-grid {
    grid-template-columns: 1fr;
  }

  .mj-footer-brand {
    justify-items: center;
    text-align: center;
  }

  .mj-footer-brand p {
    margin: 0 auto;
  }

  .mj-service img {
    width: 100%;
    height: 210px;
  }

  .mj-service-feature img {
    height: 500px;
  }

  .mj-project-card,
  .mj-project-card.mj-large {
    min-height: 420px;
  }

  .mj-cta .mj-btn {
    margin-top: 22px;
    width: 100%;
  }

  .mj-about-preview {
    background: #fff;
  }

  .mj-about-mosaic {
    min-height: 410px;
  }

  .mj-about-mosaic img:first-child {
    width: 82%;
    height: 310px;
  }

  .mj-about-mosaic img:last-child {
    width: 58%;
    height: 210px;
  }

  .mj-question-banner {
    min-height: auto;
    gap: 22px;
    padding: 28px 22px 30px;
    text-align: center;
    background: linear-gradient(180deg, #071121 0%, #081c2a 100%);
  }

  .mj-question-banner::before {
    inset: 28px 18px;
    opacity: 0.09;
    background-size: 22px 22px;
  }

  .mj-question-visual img {
    height: 210px;
  }

  .mj-question-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
  }

  .mj-question-actions .mj-btn {
    min-height: 48px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
  }

  .mj-question-content span {
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.13em;
  }

  .mj-question-content h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.18;
    white-space: normal;
  }

  .mj-question-side {
    gap: 12px;
  }

  .mj-question-side img {
    width: 132px;
  }

  .mj-question-side p {
    max-width: 270px;
    font-size: 15px;
    font-weight: 400;
  }

  .mj-why-card:nth-child(2),
  .mj-why-card:nth-child(4) {
    transform: none;
  }

  .mj-why-card {
    min-height: 140px;
  }
}

.mj-project-card .mj-project-info:not(.mj-project-info-action) {
  bottom: 92px;
  z-index: 2;
}

.mj-project-card .mj-project-info-action {
  bottom: 24px;
}

.mj-project-card .mj-project-info-action .mj-card-link {
  margin-top: 0;
}
